Fp 0.27.0
See the version list below for details.
dotnet add package Fp --version 0.27.0
NuGet\Install-Package Fp -Version 0.27.0
<PackageReference Include="Fp" Version="0.27.0" />
paket add Fp --version 0.27.0
#r "nuget: Fp, 0.27.0"
// Install Fp as a Cake Addin #addin nuget:?package=Fp&version=0.27.0 // Install Fp as a Cake Tool #tool nuget:?package=Fp&version=0.27.0
File processing
Package | Release |
---|---|
Fp |
|
Fp.Fs |
|
Fp.Plus |
|
Fp.Platforms.Nitro |
|
Fp.Templates |
Fp is designed as a framework for implementing concise data format extractors, primarily for archive containers and 2D rasters.
Many utilities for working with primitive data (including endianness-dependent I/O) are provided. See the Samples for more.
Libraries
- Fp: Base file processing library
- .NET Standard 2.0 / .NET 6.0
- Fp.Fs: Filesystem processing library
- .NET Standard 2.0 / .NET 6.0
- Fp.Plus: Extension library (e.g. RGBA32 image (through ImageSharp) / PCM WAVE output)
- .NET Standard 2.0 / .NET 6.0
- Fp.Platforms.Nitro: Nintendo DS file format integrations
- .NET Standard 2.0 / .NET 6.0
Scripting
- fpx: Script execution program (thin wrapper of dotnet-script)
- Requires .NET 6 SDK for execution
- Dereliction: Basic Avalonia GUI script editor / testing program
- Requires .NET 6 SDK for execution
Details
Filesystem processors are a unit worker derived from Fp.Fs.FsProcessor
or one of its descendants that are called to operate on each applicable (by default, based on extension) file path, optionally opening a stream and generating console output or file artifacts. If written to only use compatible APIs (e.g. working with the FileSystemSource
APIs and not directly using System.IO.File
etc.), processors can be used to work with synthetic filesystems (e.g. directly working on files in a zip file) and more generally be used to efficiently interact with any binary data regardless of source.
File format processors are a unit worker derived from Fp.FormatSingleProcessor
, Fp.FormatMultiProcessor
, or one of their descendants. They can be used to efficiently obtain converted data from individual files, or be wrapped with FormatSingleProcessorFsWrapper
/ FormatMultiProcessorFsWrapper
to be used as a FsProcessor
.
Programs intended to extract from a set of files / folders (recursively) to a destination can utilize the default FsProcessor.Run<T>
function where T
is a user-created processor class. All file I/O is managed by the library, the processor will be automatically fed input file paths and can opt to open these files / create new files (automatically placed in the output directory) via the Processor
class APIs.
Processors can be designed to generate a System.Collections.Generic.IEnumerable<Fp.Data>
where Data
represents an arbitrary content result with an associated filename, such as Fp.Plus.Images.Rgba32Data
for an RGBA 32-bit image, or Fp.BufferData<byte>
for an arbitrary byte buffer. This can be a useful pattern for designing an arbitrary import scheme for software that needs to be able to work with new file types without unnecessary pipeline changes.
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 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 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 | netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.1 is compatible. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.1
- No dependencies.
-
net6.0
- No dependencies.
NuGet packages (4)
Showing the top 4 NuGet packages that depend on Fp:
Package | Downloads |
---|---|
Fp.Plus
Native utilities |
|
Fp.Platforms.Nitro
Nitro utilities |
|
Fp.Vgmstream
Vgmstream utilities |
|
Fp.Fs
File processing (filesystem variants) |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
0.27.1 | 652 | 9/6/2022 |
0.27.0 | 1,471 | 9/6/2022 |
0.26.0 | 1,297 | 1/31/2022 |
0.25.0 | 1,263 | 1/18/2022 |
0.24.0 | 971 | 1/16/2022 |
0.23.2 | 261 | 1/11/2022 |
0.23.1 | 552 | 12/28/2021 |
0.23.0 | 506 | 12/28/2021 |
0.22.0 | 757 | 12/18/2021 |
0.21.1 | 311 | 11/10/2021 |
0.21.0 | 582 | 11/9/2021 |
0.20.0 | 702 | 6/27/2021 |
0.19.1 | 481 | 6/14/2021 |
0.19.0 | 515 | 6/14/2021 |
0.18.3 | 496 | 5/28/2021 |
0.18.2 | 449 | 5/24/2021 |
0.18.1 | 344 | 3/22/2021 |
0.18.0 | 466 | 3/22/2021 |
0.17.0 | 482 | 3/17/2021 |
0.16.0 | 611 | 3/17/2021 |
0.15.1 | 339 | 3/17/2021 |
0.15.0 | 341 | 3/17/2021 |
0.14.1 | 383 | 3/15/2021 |
0.14.0 | 374 | 3/14/2021 |
0.13.0 | 411 | 3/14/2021 |
0.12.0 | 322 | 3/14/2021 |
0.11.4 | 417 | 3/13/2021 |
0.11.3 | 382 | 3/11/2021 |
0.11.2 | 363 | 3/11/2021 |
0.11.1 | 352 | 3/11/2021 |
0.11.0 | 360 | 3/11/2021 |
0.10.4 | 346 | 3/8/2021 |
0.10.3 | 356 | 3/8/2021 |
0.10.2 | 354 | 3/8/2021 |
0.10.1 | 332 | 3/8/2021 |
0.10.0 | 352 | 3/8/2021 |
0.9.1 | 389 | 3/7/2021 |
0.9.0 | 386 | 3/7/2021 |
0.8.12 | 340 | 3/5/2021 |
0.8.11 | 333 | 3/5/2021 |
0.8.10 | 325 | 3/5/2021 |
0.8.9 | 337 | 3/5/2021 |
0.8.8 | 376 | 3/4/2021 |
0.8.7 | 673 | 1/16/2021 |
0.8.2 | 1,036 | 1/16/2021 |
0.8.1 | 370 | 1/13/2021 |
0.8.0 | 366 | 1/13/2021 |
0.7.3 | 352 | 1/12/2021 |
0.7.2 | 347 | 1/11/2021 |
0.7.1 | 351 | 1/11/2021 |
0.7.0 | 430 | 1/9/2021 |
0.6.0 | 439 | 1/9/2021 |
0.5.0 | 374 | 1/1/2021 |
0.4.4 | 397 | 1/1/2021 |
0.4.3 | 370 | 12/31/2020 |
0.4.2 | 378 | 12/31/2020 |
0.4.1 | 443 | 10/12/2020 |
0.4.0 | 429 | 10/8/2020 |
0.3.9 | 435 | 10/8/2020 |
0.3.8 | 565 | 6/26/2020 |
0.3.7 | 521 | 6/19/2020 |
0.3.6 | 519 | 6/19/2020 |
0.3.5 | 569 | 6/19/2020 |
0.3.4 | 461 | 6/18/2020 |
0.3.3 | 459 | 6/18/2020 |
0.3.2 | 490 | 6/18/2020 |
0.3.1 | 492 | 6/17/2020 |
0.3.0 | 549 | 6/7/2020 |
0.2.2 | 518 | 5/24/2020 |
0.2.1 | 483 | 5/12/2020 |
0.1.1 | 460 | 4/16/2020 |
0.1.0 | 465 | 4/8/2020 |