Emu-Xperts
When a file exists on the server you are uploading to, and the hash doesn't match, and none of the assertions match, it overwrites the file. (Even when the file is an incomplete form of the file you are uploading [Meaning, resumable])
On some FTP server hash-checks are possible to see if two files are the same, as FTP uses to do so.
It would be very usefull to use that hash of the file and compair it two the hash of the first X bytes of the file you are trying to upload. (X would be the length of the already existing file) If they were to match, we know that it can be resumed.
This would keep you from overwriting files that can easily be resumed when on a queue.
On some FTP server hash-checks are possible to see if two files are the same, as FTP uses to do so.
It would be very usefull to use that hash of the file and compair it two the hash of the first X bytes of the file you are trying to upload. (X would be the length of the already existing file) If they were to match, we know that it can be resumed.
This would keep you from overwriting files that can easily be resumed when on a queue.