1
0
mirror of https://github.com/winfsp/winfsp.git synced 2026-06-04 11:56:54 -05:00

Compare commits

..

2 Commits

Author SHA1 Message Date
Bill Zissimopoulos ff9e38c82d doc: add 9p-winfsp to known file systems 2026-05-31 21:34:09 +03:00
Bill Zissimopoulos 608e16761e tst: passthrough, passthrough-cpp: fix #662 2026-05-18 12:22:22 +03:00
3 changed files with 3 additions and 2 deletions
+1
View File
@@ -4,6 +4,7 @@ This document contains a list of known open-source file systems and file system
== File Systems == File Systems
- https://github.com/dharmatech/9p-winfsp[9p-winfsp] - Experimental native Windows client for mounting Plan 9 9P exports.
- https://github.com/wesley1975/blobfs-win[blobfs-win] - The native porting of the blobfs on the windows platform, blobfs can help you mount the Azure Blob storage as the local disk driver, no matter it is a Linux system or a Windows system. - https://github.com/wesley1975/blobfs-win[blobfs-win] - The native porting of the blobfs on the windows platform, blobfs can help you mount the Azure Blob storage as the local disk driver, no matter it is a Linux system or a Windows system.
- https://github.com/buildbarn/bb-remote-execution[buildbarn] - A bazel-compatible remote execution service that uses WinFSP to provide a virtual directory for performing builds - https://github.com/buildbarn/bb-remote-execution[buildbarn] - A bazel-compatible remote execution service that uses WinFSP to provide a virtual directory for performing builds
- https://github.com/cryptomator/cryptomator[Cryptomator] - Multi-platform transparent client-side encryption of your files in the cloud - https://github.com/cryptomator/cryptomator[Cryptomator] - Multi-platform transparent client-side encryption of your files in the cloud
+1 -1
View File
@@ -191,7 +191,7 @@ Ptfs::~Ptfs()
NTSTATUS Ptfs::SetPath(PWSTR Path) NTSTATUS Ptfs::SetPath(PWSTR Path)
{ {
WCHAR FullPath[MAX_PATH]; WCHAR FullPath[FULLPATH_SIZE];
ULONG Length; ULONG Length;
HANDLE Handle; HANDLE Handle;
FILETIME CreationTime; FILETIME CreationTime;
+1 -1
View File
@@ -626,7 +626,7 @@ static VOID PtfsDelete(PTFS *Ptfs);
static NTSTATUS PtfsCreate(PWSTR Path, PWSTR VolumePrefix, PWSTR MountPoint, UINT32 DebugFlags, static NTSTATUS PtfsCreate(PWSTR Path, PWSTR VolumePrefix, PWSTR MountPoint, UINT32 DebugFlags,
PTFS **PPtfs) PTFS **PPtfs)
{ {
WCHAR FullPath[MAX_PATH]; WCHAR FullPath[FULLPATH_SIZE];
ULONG Length; ULONG Length;
HANDLE Handle; HANDLE Handle;
FILETIME CreationTime; FILETIME CreationTime;