Does this approach capture changes made to folder names/ file names? #5
Replies: 2 comments 1 reply
-
Hey Richard!! you've got eagle eyes! -- I was just writing up a blog about this repository today to introduce it to the world. As I was writing about it I was thinking about this very issue. Ideally (at least in one use-case for this tool) folder names wouldn't be important, but the current algorithm will register some changes to file names and is fairly likely to cause the collection checksum to change -- there's an initial alphabetical sort of reports before processing. There's another more recursive algorithm for this work I can envision that doesn't sort by filename at all, and works its way up the tree by ordering folders alphabetically by checksum (like it does for files), and then it wont be sensitive to folder naming at all. This is closer to the use-case I was writing for. There may be a case to be made for both approaches. Are you for or against capturing folder name changes? |
Beta Was this translation helpful? Give feedback.
-
It feels a little weird to me to verify that a folder is empty but not verify its name? I'd suggest either:
|
Beta Was this translation helpful? Give feedback.
-
Nice repo btw :)
Beta Was this translation helpful? Give feedback.
All reactions