libXFile 2.0.0
dotnet add package libXFile --version 2.0.0
NuGet\Install-Package libXFile -Version 2.0.0
<PackageReference Include="libXFile" Version="2.0.0" />
paket add libXFile --version 2.0.0
#r "nuget: libXFile, 2.0.0"
// Install libXFile as a Cake Addin #addin nuget:?package=libXFile&version=2.0.0 // Install libXFile as a Cake Tool #tool nuget:?package=libXFile&version=2.0.0
XFile - Binary File Management
XFile is a C# library for working with binary files that have a specific header. It provides features for reading, writing, and managing these binary files while maintaining the required file format.
Features
- Create XFiles: Initialize new binary files with a custom or default XFile header.
- Write Binary Data: Write binary data to a file, including the XFile header.
- Append Data: Append binary data to an existing file.
- Read Binary Data: Read binary data from a file, skipping the XFile header.
- Read Text Data: Read text data from a file, supporting multiple encodings.
Please read the documentation for more information.
Usage
Creating an XFile
XFile xFile = new XFile();
Writing Binary Data
byte[] data = // data
xFile.WriteAllBytes("file.dat", data);
Appending Data
byte[] additionalData = // data
xFile.Append("file.dat", additionalData);
Reading Binary Data
byte[] data = xFile.ReadAllBytes("file.dat");
Reading Text Data
string text = xFile.ReadAllText("textfile.txt");
Installation
You can include XFile in your project using NuGet:
dotnet add package libXFile
License
This project is licensed under the MIT License - see the LICENSE file for details.
Contributing
Contributions and feedback are welcome! Feel free to open issues, create pull requests, or provide suggestions.
Acknowledgments
- This project was inspired by the need to work with a specific file format.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 is compatible. 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 is compatible. 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 was computed. 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. |
.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 is compatible. 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. |
-
.NETFramework 4.8
- No dependencies.
-
.NETStandard 2.0
- No dependencies.
-
net6.0
- No dependencies.
-
net7.0
- No dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.