Search found 3 matches

by christian
Tue Jun 02, 2020 2:17 pm
Forum: wimlib discussion
Topic: fast MFT scanner recursion
Replies: 5
Views: 9917

Re: fast MFT scanner recursion

2. It was an aligment issue in my c# code: typedef struct { struct { u64 CreationTime; u64 LastAccessTime; u64 LastWriteTime; u64 ChangeTime; u32 FileAttributes; u32 padding } BasicInformation; u32 OwnerId; u32 SecurityId; s64 Usn; } FILE_LAYOUT_INFO_ENTRY;*/ After FileAttributes there are 4 byte pa...
by christian
Tue Jun 02, 2020 12:23 pm
Forum: wimlib discussion
Topic: fast MFT scanner recursion
Replies: 5
Views: 9917

Re: fast MFT scanner recursion

1. Thanks for the new version! I was not able to really test it properly because my drive has not enough space for a full backup and I can't compare WIM-files from the stable version and the beta easily (in case there are bugs with the tree building), but it looks great! At least I timed the part of...
by christian
Mon Jun 01, 2020 11:43 pm
Forum: wimlib discussion
Topic: fast MFT scanner recursion
Replies: 5
Views: 9917

fast MFT scanner recursion

I am very interessted in the fast MFT scan method. I see that when you find extended attributes, object IDs or encrypted files, then you switch back to the traditional method of getting most information. Otherwise you get everything but the security descriptor from the MFT and cache the security-ID ...