Hi.
Is it possibile to calculate and send the hash of the file on the client to avoid uploading something that already exists.
I’m using upload control.
Thank you
Hi Davide,
Implementing such a feature would be rather hard in a browser.
You can theoretically use the ClientFileSystem extension to make it easier and have the browser load files from your client’s File System.
But, everything would be handeled on the Server side, that means that everything would be uploaded regardless and you’ll have to compare your hash checksums on the server.
That would be expensive in terms of resources.
You can also try to use javascript for the Client side operations, but that would require calculating the Checksum as chunks otherwise the browser would crash if the file is too big.
If you need additional help with this issue, you can check out our Professional Service Packages!
HTH,
Alaa
//
Please login first to submit.