Checking duplicates return zero results #293
-
Hi there, first of all thanks for your excellent work. thanks |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 5 replies
-
Hi - I would like to add my general comments here… |
Beta Was this translation helpful? Give feedback.
-
Then what are you thanking for 😂 - just kidding, thanks Issue exactly like this popped a few times here, and i couldn't find any reason for those cases - but for yours, i think there might be You see gpth needs to have access to read, analyze, and move a lot of files. In your case, 70gb of them. And, especially the dupilacte-finding process needs to read both files and calculate their sha256 checksums to compare if they are exactly the same file. So, your computer will have to, at the end, download... let's say, 20gb of files over samba (and, potentially, hold them in ram or something) to calulate them. That's infinietley slower than if you just had them at usb drive Second - i have no idea if Dart's filesystem access plays nice with netwrok drives etc etc Solution: run everything on your PC, or, your Synology: look at #157 for knowlage 🧠 |
Beta Was this translation helpful? Give feedback.
Then what are you thanking for 😂 - just kidding, thanks
Issue exactly like this popped a few times here, and i couldn't find any reason for those cases - but for yours, i think there might be
You see gpth needs to have access to read, analyze, and move a lot of files. In your case, 70gb of them. And, especially the dupilacte-finding process needs to read both files and calculate their sha256 checksums to compare if they are exactly the same file. So, your computer will have to, at the end, download... let's say, 20gb of files over samba (and, potentially, hold them in ram or something) to calulate them. That…