OpenMcdf 3.0.3

dotnet add package OpenMcdf --version 3.0.3
                    
NuGet\Install-Package OpenMcdf -Version 3.0.3
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="OpenMcdf" Version="3.0.3" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="OpenMcdf" Version="3.0.3" />
                    
Directory.Packages.props
<PackageReference Include="OpenMcdf" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add OpenMcdf --version 3.0.3
                    
#r "nuget: OpenMcdf, 3.0.3"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package OpenMcdf@3.0.3
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=OpenMcdf&version=3.0.3
                    
Install as a Cake Addin
#tool nuget:?package=OpenMcdf&version=3.0.3
                    
Install as a Cake Tool

GitHub Actions CodeQL OpenMcdf NuGet OpenMcdf.Ole NuGet NuGet Downloads

OpenMcdf

OpenMcdf is a fully .NET / C# library to manipulate Compound File Binary File Format files, also known as Structured Storage.

Compound files include multiple streams of information (document summary, user data) in a single container, and is used as the bases for many different file formats:

  • Advanced Authoring Format (.aaf)
  • Microsoft Office (.doc, .xls, .ppt)
  • Outlook messages (.msg)
  • Visual Studio Solution Options (.suo)
  • Windows thumbnails cache files (Thumbs.db)

OpenMcdf v3 has a rewritten API and supports:

  • An idiomatic dotnet API and exception hierarchy
  • Fast and efficient enumeration and manipulation of storages and streams
  • File sizes up to 16 TB (using major format version 4 with 4096 byte sectors)
  • Transactions (i.e. commit and/or revert)
  • Consolidation (i.e. reclamation of space by removing free sectors)
  • Nullable attributes

Limitations

  • Limited error tolerance/recovery
  • No support for single writer, multiple readers
  • No support for red-black tree balancing

Directory entries are stored in a perfect binary tree where the entries are sorted but the tree is not balanced. i.e. the tree is "all-black", which is a valid red-black tree but has suboptimal performance for traversing large trees (though still considerably faster than some other clients).

Clients such as LibreOffice create trees with red-violations, which OpenMcdf is tolerant to reading and writing. Files with balanced red-black trees such as those created by Microsoft implementations will currently become unbalanced upon adding or removing directory entries. Fortunately, since other clients are also tolerant of trees that are either unbalanced or have red-violations, this should not be a major issue. The Wine implementation also has the same limitation.

Getting started

To create a new compound file:

byte[] b = new byte[10000];

using var root = RootStorage.Create("test.cfb");
using CfbStream stream = root.CreateStream("MyStream");
stream.Write(b, 0, b.Length);

To open an Excel workbook (.xls) and access its main data stream:

using var root = RootStorage.OpenRead("report.xls");
using CfbStream workbookStream = root.OpenStream("Workbook");

To create or delete storages and streams:

using var root = RootStorage.Create("test.cfb");
root.CreateStorage("MyStorage");
root.CreateStream("MyStream");
root.Delete("MyStream");

For transacted storages, changes can either be committed or reverted:

using var root = RootStorage.Create("test.cfb", StorageModeFlags.Transacted);
root.Commit();
//
root.Revert();

A root storage can be consolidated to reduce its on-disk size:

root.Flush(consolidate: true);

Object Linking and Embedding (OLE) Property Set Data Structures

Support for reading and writing OLE Properties is available via the OpenMcdf.Ole package. However, the API is experimental and subject to change.

OlePropertiesContainer co = new(stream);
foreach (OleProperty prop in co.Properties)
{
  ...
}

OpenMcdf runs happily on the Mono platform and multi-targets netstandard2.0 and net8.0 to maximize client compatibility and support modern dotnet features.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (40)

Showing the top 5 NuGet packages that depend on OpenMcdf:

Package Downloads
MsgReader

Read Outlook MSG and EML files without using Outlook. The MSGReader supports MSG E-Mail (also signed), Contact, Appointment, Task, Sticky notes and Contact files. The EML reader supports MIME 1.0 encoded files.

FileSignatures

A small library for detecting the type of a file based on header signature (also known as magic number) rather than file extension.

MsgKit

MsgKit is a 100% managed C# .NET library (no PINVOKE or whatsoever) which may be used for the creation of messages (E-Mail, Appointments, Journals and Stickey Notes) that are Outlook compatible

mzLib

Library for mass spectrometry projects.

GdPicture

Intelligent PDF & document processing SDKs

GitHub repositories (18)

Showing the top 18 popular GitHub repositories that depend on OpenMcdf:

Repository Stars
vivami/SauronEye
Search tool to find specific files containing specific words, i.e. files containing passwords..
michaelweber/Macrome
Excel Macro Document Reader/Writer for Red Teamers & Analysts
Sicos1977/MSGReader
C# Outlook MSG file reader without the need for Outlook
freezy/VisualPinball.Engine
:video_game: Visual Pinball Engine for Unity
Inf0secRabbit/BadAssMacros
BadAssMacros - C# based automated Malicous Macro Generator.
EvotecIT/OfficeIMO
Fast and easy to use cross-platform .NET library that creates or modifies Microsoft Word (DocX) and later also Excel (XLSX) files without installing any software. Library is based on Open XML SDK
b4rtik/RedPeanut
RedPeanut is a small RAT developed in .Net Core 2 and its agent in .Net 3.5 / 4.0.
neilharvey/FileSignatures
A small library for detecting the type of a file based on header signature (also known as magic number).
CnCNet/xna-cncnet-client
XNA / MonoGame based client for playing classic Command & Conquer games both online and offline with a CnCNet game spawner.
CompOmics/ThermoRawFileParser
Thermo RAW file parser that runs on Linux/Mac and all other platforms that support Mono
Sicos1977/MsgKit
A .NET library to make MSG files without the need for Outlook
lindexi/lindexi_gd
博客用到的代码
svrooij/WinTuner
Package any app from Winget to Intune - WinTuner
chelh/VBASync
Cross-platform tool to synchronize macros from an Office VBA-enabled file with a version-controlled folder
sqrtZeroKnowledge/CVE-2023-23397_EXPLOIT_0DAY
Exploit for the CVE-2023-23397
ajryan/RptToXml
Crystal Reports to XML converter
CodeCavePro/revitless-toolkit
A cross-platform toolkit for reading metadata of .rfa, .rvt etc. Reading / writing hared sparameter and type catalog files WITHOUT Revit
moom825/visualstudio-suo-exploit
This repository is a tool to create a .suo that when run by visual studio's will achieve code execution
Version Downloads Last Updated
3.0.3 433 9/4/2025
3.0.2 6,744 8/26/2025
3.0.1 48,938 6/22/2025
3.0.0 19,251 6/3/2025
3.0.0-preview.5 305 4/22/2025
3.0.0-preview.4 834 11/29/2024
3.0.0-preview.3 121 11/28/2024
3.0.0-preview.2 178 11/21/2024
2.4.1 452,827 12/1/2024
2.4.0 25,254 11/14/2024
2.3.1 2,014,590 3/2/2024
2.3.0 1,159,249 4/22/2023
2.2.1.12 721,553 8/30/2022
2.2.1.9 3,928,139 9/18/2020
2.2.1.6 60,808 7/22/2020
2.2.1.5 1,551 7/21/2020
2.2.1.4 809,154 12/7/2019
2.2.1.3 1,290,266 10/27/2018
2.2.1.2 12,742 10/6/2018
2.2.0.1 38,948 7/22/2018
2.1.6.28924 57,672 4/14/2018
2.1.5.22659 17,632 3/17/2018
2.1.4.23498 2,117 3/10/2018
2.1.3.34730 13,967 7/22/2017
2.1.3.34720 2,563 6/2/2017
2.1.2.1274 3,124 3/17/2017
2.1.0.33051 8,738 12/29/2016
2.0.5739.40493 321,750 9/18/2015
1.5.4.22637 25,552 1/24/2013