OpenMcdf 3.0.0-preview.5

This is a prerelease version of OpenMcdf.
dotnet add package OpenMcdf --version 3.0.0-preview.5
                    
NuGet\Install-Package OpenMcdf -Version 3.0.0-preview.5
                    
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.0-preview.5" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="OpenMcdf" Version="3.0.0-preview.5" />
                    
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.0-preview.5
                    
#r "nuget: OpenMcdf, 3.0.0-preview.5"
                    
#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.
#addin nuget:?package=OpenMcdf&version=3.0.0-preview.5&prerelease
                    
Install OpenMcdf as a Cake Addin
#tool nuget:?package=OpenMcdf&version=3.0.0-preview.5&prerelease
                    
Install OpenMcdf as a Cake Tool

GitHub Actions CodeQL NuGet Version 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:

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

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:

  • No support for red-black tree balancing (directory entries are stored in a tree, but are not balanced. i.e. trees are "all-black")
  • No support for single writer, multiple readers

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 (19)

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

Repository Stars
QL-Win/QuickLook
Bring macOS “Quick Look” feature to Windows
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.
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.
Sicos1977/MsgKit
A .NET library to make MSG files without the need for Outlook
CompOmics/ThermoRawFileParser
Thermo RAW file parser that runs on Linux/Mac and all other platforms that support Mono
lindexi/lindexi_gd
博客用到的代码
svrooij/WingetIntune
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
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
ajryan/RptToXml
Crystal Reports to XML converter
SabreTools/BinaryObjectScanner
C# protection, packer, and archive scanning library
Version Downloads Last updated
3.0.0-preview.5 204 4/22/2025
3.0.0-preview.4 584 11/29/2024
3.0.0-preview.3 83 11/28/2024
3.0.0-preview.2 147 11/21/2024
2.4.1 186,474 12/1/2024
2.4.0 16,409 11/14/2024
2.3.1 1,517,257 3/2/2024
2.3.0 1,042,645 4/22/2023
2.2.1.12 666,437 8/30/2022
2.2.1.9 3,664,107 9/18/2020
2.2.1.6 60,068 7/22/2020
2.2.1.5 1,479 7/21/2020
2.2.1.4 742,508 12/7/2019
2.2.1.3 1,254,772 10/27/2018
2.2.1.2 10,519 10/6/2018
2.2.0.1 38,350 7/22/2018
2.1.6.28924 52,287 4/14/2018
2.1.5.22659 17,281 3/17/2018
2.1.4.23498 1,913 3/10/2018
2.1.3.34730 13,699 7/22/2017
2.1.3.34720 2,321 6/2/2017
2.1.2.1274 2,933 3/17/2017
2.1.0.33051 8,533 12/29/2016
2.0.5739.40493 319,963 9/18/2015
1.5.4.22637 24,614 1/24/2013