質問

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

役に立ちましたか?

解決

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

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

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top