NtfsLib
NtfsLib copied to clipboard
NTFS parsing library in C#. Allows one to parse and read NTFS structures on disk.
Hello There seems to be a bug in NtfsCopy https://github.com/LordMike/NtfsLib/blob/master/NtfsCopy/Program.cs#L152 byte[] buff = new byte[65535]; This throws an error when the file is larger than 65535 bytes in size. The...
System.InvalidOperationException HResult=0x80131509 Message=Sequence contains no matching element Source=System.Core StackTrace: at System.Linq.Enumerable.Single[TSource](IEnumerable`1 source, Func`2 predicate) at NTFSLib.IO.NtfsDirectory.PrepRecord() in ... NtfsLib\NtfsLib\NTFSLib\IO\NtfsDirectory.cs:line 48 Happening with files in "c:\Program Files\Microsoft SQL Server\MSSQL12.MSSQL2014\MSSQL\DATA\" and "c:\Program...
Hi, I am trying to run TestApplication. I changed the first line from `const char driveLetter = 'E'` to `const char driveLetter='C'`, and get this error while running: ``` Exception...
Hi, I'm trying to list all directories & files from my C drive, but it's only give me the first level. how can I use `dir.ListFiles()` to list all files...
Hi I'm trying to get the "TestApplication" running but I'm stuck at one point: In the line "foreach (FileRecord record in parser.GetRecords(true))" (Line 33) of the file "Program.cs" the parser...