Question

I am trying to upload the zip file in the vault ( of amazon glacier clould storage ). the upload methods successfully executed without any exception. also return the archive id of the upload but I cant see any files in archives.

string vaultName = "test";
            string archiveToUpload = @"E:\Mayur\Downloads\Zip files\search.zip";
            ArchiveTransferManager manager = new ArchiveTransferManager(Amazon.RegionEndpoint.USWest2);
            string archiveId = manager.Upload(vaultName, "Binari archive", archiveToUpload).ArchiveId;

I am not getting any exception methods successfully returns an archive Id

Please help me to find out what is the actual issue..

Thanks, Mayur

Was it helpful?

Solution

Simply because The vault inventory is updated approximately once a day.

source: http://aws.amazon.com/glacier/faqs/

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top