idrassi / HashCheck

HashCheck Shell Extension for Windows with added SHA2, SHA3, and multithreading; originally from code.kliu.org
Other
257 stars 12 forks source link

File order is broken #4

Open SoyRA opened 3 years ago

SoyRA commented 3 years ago

Basically what I put in The Checksum doesn't respect my "View Settings", but in short this is what happens:

But this problem doesn't occur when doing this:

tERyceNzAchE commented 3 years ago

Based on your referenced issue, this has been the way the original HashCheck fork has handled things from it's creation. I would not label this as a bug, and instead consider this an enhancement.

SoyRA commented 3 years ago

- Write: everything I said, I think it's like this to make it faster. - Read: On the HDD it reads ordered while on the SSD it reads unordered (it doesn't matter if the file was generated ordered or not).

And I also noticed that it doesn't sort well either (or at least not respecting the folder structure) in the verification, for example: - Sort by Name: Perfect, I'll see "FileA -> FileB -> FolderA\File1 -> FolderA\File2 -> FolderB\File1". :P - Sort by Status: Well...it does, but now the names are unordered (unlike how it's done by Name). * For a few files it doesn't bother, but when there are many...it becomes complicated. @,@

idrassi commented 1 year ago

Please check my explainations on the issue https://github.com/idrassi/HashCheck/issues/15

Basically, the cause is the use of multithreading in case of SSD to speedup computation. I have proposed to sort the entried of the checksum file after all computations are done. The sort will be based on lexicographical order on name. This will not always match the Explorer View Settings (I don't know how to read that programmatically) but it is better than nothing.