I’m using azcopy command to download files from blob storage in c-sharp web service. The command has –overwrite IfSourceNewer and –check-md5 parameters. In case of an MD5 mismatch, the response will be false, so should I re-try the download(call the azcopy command again)?
I don’t want to re-download the whole blob storage(might have 10k+ flies). But since the –overwrite IfSourceNewer flag is there, I think it will only download the files that failed the MD5 check in the above case.
This looks like the easiest solution to implement.
Regards
J