AlphaFS
AlphaFS copied to clipboard
AlphaFS is a .NET library providing more complete Win32 file system functionality to the .NET platform than the standard System.IO classes.
I have been trying to write a routine to reproduce behaviour I have seen occur on several machines. From what I can tell, it appears to be due to transactional...
Not much activity....
Trying to delete a folder gives me the exception on the title. Using 2.2.6 version downloaded from nuget. Stack trace: ``` at Alphaleonis.Win32.Filesystem.FindFileSystemEntryInfo.VerifyInstanceType(WIN32_FIND_DATA win32FindData) in C:\Users\jjangli\Documents\GitHub\AlphaFS\AlphaFS\Filesystem\FindFileSystemEntryInfo.cs:line 428 at Alphaleonis.Win32.Filesystem.FindFileSystemEntryInfo.Get[T]() in...
Hi, In .NET Core 2.1, file enumerations are very powerful due to the use of `Span`. You can read for example this blog post : [performance improvements in .NET Core...
I keep constantly running into exceptions for trying to access various folders and files that for real but varying reasons (even over time) just cannot or should not be enumerated...
EnumerateOpenConnectionsCore is called with null in the share parameter. Due to the `if (Utils.IsNullOrWhiteSpace(share))` condition, it will always throw an ArgumentNullException.
Hi, I tried to use AlphaFS in a .NET 5.0 project and I get the following warning: `Avertissement NU1701: Le package 'AlphaFS 2.2.6' a été restauré en utilisant '.NETFramework,Version=v4.6.1, .NETFramework,Version=v4.6.2,...
Hello, I have a special case with transactional writing a file on a USB storage formated to NTFS. If the storage is plugged, it will be mounted in another NTFS...
```csharp FileInfo x = new FileInfo("a"); x.Copy("b"); //
When use backupFileStream writer to create .zip file and add files inside it using Xceed.Zip.ReaderWriter.ZipWriter the BackupWrite native method return (13) the data is invalid. The code sample below :...