I am developing a system against Amazon S3. I am doing this in C # using the S3.NET SDK.
I want to upload several files to S3 at once, but if someone does not work, I want all of them to fail. I can do it? How?
Does the TransferUtility.UploadDirectory SDK create atomic directory loading, where if any file in the directory does not load, all of them do not work?
If it does not perform atomic loading, then I will need to have code to manage it; how to find out which files were successful and which failed to use TransferUtility.UploadDirectory?
Thanks for any help or direction.
source share