![]() |
VOOZH | about |
dotnet add package LTRData.FuseDotNet --version 1.0.0.14
NuGet\Install-Package LTRData.FuseDotNet -Version 1.0.0.14
<PackageReference Include="LTRData.FuseDotNet" Version="1.0.0.14" />
<PackageVersion Include="LTRData.FuseDotNet" Version="1.0.0.14" />Directory.Packages.props
<PackageReference Include="LTRData.FuseDotNet" />Project file
paket add LTRData.FuseDotNet --version 1.0.0.14
#r "nuget: LTRData.FuseDotNet, 1.0.0.14"
#:package LTRData.FuseDotNet@1.0.0.14
#addin nuget:?package=LTRData.FuseDotNet&version=1.0.0.14Install as a Cake Addin
#tool nuget:?package=LTRData.FuseDotNet&version=1.0.0.14Install as a Cake Tool
.NET wrapper for Fuse libraries for creating file systems in user mode.
By using Fuse library, you can create your own file systems very easily without writing a kernel level file system driver. FuseDotNet is a library that allows you to make a file system on .NET environment.
In comparison to other libraries like FuseSharp, the main goal of this library is optimized performance by less garbage collector and heap allocation pressure. It could be a bit more difficult to use, because path strings and I/O buffers are not directly available to handling routines as strings and byte arrays, but the implemenations should probably be fairly straight-forward anyway.
FuseDotNet is distributed under a version of the "MIT License", which is a BSD-like license. See the 'LICENSE.txt' file for details.
Targets .NET Framework 4.8 and .NET Standard 2.0 can be used with Mono and targets .NET Standard 2.1 can be used with .NET Core 3.1 - .NET 5.0 applications and libraries. There are also .NET 6.0 and .NET 7.0 builds with certain optimizations available in those versions.
To make a file system, an application needs to implement IFuseOperations
interface. Once implemented, you can invoke Mount method on your driver
instance to mount a drive. By default, the Fuse native library forks the process
and continues work in a child process. The parent process returns. This can be an
issue when for example debugging, in which case "-f" or "-d" options can be passed
to Fuse to instead do work in current process and block until file system is
dismounted. Parameters to Mount method are just like Fuse library. See sample
codes under 'sample' directory. Administrator privileges are required to run
file system applications.
There are sample implementations, "mirror" and "tempfs", that show basic
implementation of the library. There is also a "DiscUtils.MountFuse" package that
implements a FuseDotNet file system using IFileSystem implementations in DiscUtils
library. Source code for that library is in https://github.com/LTRData/DiscUtils
repository.
Just run the below command to unmount a file system.
umount /mountpoint
| 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 is compatible. 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 is compatible. |
| .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 is compatible. 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 3 NuGet packages that depend on LTRData.FuseDotNet:
| Package | Downloads |
|---|---|
|
LTRData.DiscUtils.MountFuse
Package Description |
|
|
LTRData.DiscUtils.Fuse
Package Description |
|
|
Devedse.DiscUtils.MountFuse
Package Description |
This package is not used by any popular GitHub repositories.