![]() |
VOOZH | about |
dotnet add package OpenMcdf --version 3.1.4
NuGet\Install-Package OpenMcdf -Version 3.1.4
<PackageReference Include="OpenMcdf" Version="3.1.4" />
<PackageVersion Include="OpenMcdf" Version="3.1.4" />Directory.Packages.props
<PackageReference Include="OpenMcdf" />Project file
paket add OpenMcdf --version 3.1.4
#r "nuget: OpenMcdf, 3.1.4"
#:package OpenMcdf@3.1.4
#addin nuget:?package=OpenMcdf&version=3.1.4Install as a Cake Addin
#tool nuget:?package=OpenMcdf&version=3.1.4Install as a Cake Tool
๐ GitHub Actions
๐ CodeQL
๐ OpenMcdf NuGet
๐ OpenMcdf.Ole NuGet
๐ NuGet Downloads
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:
OpenMcdf v3 has a rewritten API and supports:
Directory entries are stored in a binary search 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.
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);
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, net8.0, and net10.0 to maximize client compatibility and support modern dotnet features.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net5.0 net5.0 was computed. net5.0-windows net5.0-windows was computed. net6.0 net6.0 was computed. net6.0-android net6.0-android was computed. net6.0-ios net6.0-ios was computed. net6.0-maccatalyst net6.0-maccatalyst was computed. net6.0-macos net6.0-macos was computed. net6.0-tvos net6.0-tvos was computed. net6.0-windows net6.0-windows was computed. net7.0 net7.0 was computed. net7.0-android net7.0-android was computed. net7.0-ios net7.0-ios was computed. net7.0-maccatalyst net7.0-maccatalyst was computed. net7.0-macos net7.0-macos was computed. net7.0-tvos net7.0-tvos was computed. net7.0-windows net7.0-windows was computed. net8.0 net8.0 is compatible. net8.0-android net8.0-android was computed. net8.0-browser net8.0-browser was computed. net8.0-ios net8.0-ios was computed. net8.0-maccatalyst net8.0-maccatalyst was computed. net8.0-macos net8.0-macos was computed. net8.0-tvos net8.0-tvos was computed. net8.0-windows net8.0-windows was computed. net9.0 net9.0 was computed. net9.0-android net9.0-android was computed. net9.0-browser net9.0-browser was computed. net9.0-ios net9.0-ios was computed. net9.0-maccatalyst net9.0-maccatalyst was computed. net9.0-macos net9.0-macos was computed. net9.0-tvos net9.0-tvos was computed. net9.0-windows net9.0-windows was computed. net10.0 net10.0 is compatible. net10.0-android net10.0-android was computed. net10.0-browser net10.0-browser was computed. net10.0-ios net10.0-ios was computed. net10.0-maccatalyst net10.0-maccatalyst was computed. net10.0-macos net10.0-macos was computed. net10.0-tvos net10.0-tvos was computed. net10.0-windows net10.0-windows was computed. |
| .NET Core | netcoreapp2.0 netcoreapp2.0 was computed. netcoreapp2.1 netcoreapp2.1 was computed. netcoreapp2.2 netcoreapp2.2 was computed. netcoreapp3.0 netcoreapp3.0 was computed. netcoreapp3.1 netcoreapp3.1 was computed. |
| .NET Standard | netstandard2.0 netstandard2.0 is compatible. netstandard2.1 netstandard2.1 was computed. |
| .NET Framework | net461 net461 was computed. net462 net462 was computed. net463 net463 was computed. net47 net47 was computed. net471 net471 was computed. net472 net472 was computed. net48 net48 was computed. net481 net481 was computed. |
| MonoAndroid | monoandroid monoandroid was computed. |
| MonoMac | monomac monomac was computed. |
| MonoTouch | monotouch monotouch was computed. |
| Tizen | tizen40 tizen40 was computed. tizen60 tizen60 was computed. |
| Xamarin.iOS | xamarinios xamarinios was computed. |
| Xamarin.Mac | xamarinmac xamarinmac was computed. |
| Xamarin.TVOS | xamarintvos xamarintvos was computed. |
| Xamarin.WatchOS | xamarinwatchos xamarinwatchos was computed. |
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.API
Intelligent PDF & document processing SDKs |
Showing the top 20 popular GitHub repositories that depend on OpenMcdf:
| Repository | Stars |
|---|---|
|
iOfficeAI/OfficeCLI
OfficeCLI is the first and best Office suite purpose-built for AI agents to read, edit, and automate Word, Excel, and PowerPoint files. Free, open-source, single binary, no Office installation required.
|
|
|
vivami/SauronEye
Search tool to find specific files containing specific words, i.e. files containing passwords..
|
|
|
Sicos1977/MSGReader
C# Outlook MSG file reader without the need for Outlook
|
|
|
michaelweber/Macrome
Excel Macro Document Reader/Writer for Red Teamers & Analysts
|
|
|
freezy/VisualPinball.Engine
:video_game: Visual Pinball Engine for Unity
|
|
|
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
|
|
|
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.
|
|
|
svrooij/WinTuner
Package any app from Winget to Intune - WinTuner
|
|
|
Sicos1977/MsgKit
A .NET library to make MSG files without the need for Outlook
|
|
|
Shazwazza/Articulate
A wonderful Blog engine built on Umbraco
|
|
|
lindexi/lindexi_gd
ๅๅฎข็จๅฐ็ไปฃ็
|
|
|
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
|
|
|
Snowy-Studio/RF-Client
็บข่ญฆ2้่ๆชๆฅๅฎขๆท็ซฏ
|
|
|
CodeCavePro/revitless-toolkit
A cross-platform toolkit for reading metadata of .rfa, .rvt etc. Reading / writing hared sparameter and type catalog files WITHOUT Revit
|
|
|
ajryan/RptToXml
Crystal Reports to XML converter
|
|
|
moom825/visualstudio-suo-exploit
This repository is a tool to create a .suo that when run by visual studio's will achieve code execution
|