用于安装 *nix 和 的免费库.NET 的 mac 文件系统?
我的应用程序是Microsoft.NET 3.5,C#。它使用 .NET API(如 File.Exists、Directory.GetFiles/GetDirectories、File.ReadAllText 等)与 Windows 文件系统配合使用。
我需要能够搜索和读取其他文件系统上的文件,特别是 *nix 和 MacOS 文件系统,
是否有任何免费库使我能够挂载此类文件系统并使用 .NET API 来使用它们?
My application is Microsoft.NET 3.5, C#. It works with windows file systems using .NET API like File.Exists, Directory.GetFiles/GetDirectories, File.ReadAllText and similar.
I need to have an ability to search and read files on another file systems, particularly, *nix and MacOS file systems,
Is there any free library enabling me to mount such file systems and work with them using .NET API?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一个简单的解决方案是 Windows 驱动程序。 http://www.fs-driver.org/ 上有一个 ext2/3 驱动程序可用,但是我不知道 ext4 或任何 OSX 文件系统的驱动程序。
An easy solution would be a driver for Windows. There is a ext2/3 driver available on http://www.fs-driver.org/ but I don't know about a driver for the ext4 or any OSX filesystem.