uskudnik / amazon-glacier-cmd-interface

Command line interface for Amazon Glacier
MIT License
374 stars 100 forks source link

Download resumption #82

Closed wvmarle closed 11 years ago

wvmarle commented 11 years ago

Complete download resumption using the --resume option.

So what we have now (assume retrieving done):

$ glacier-cmd download <vault> <archive_id> --outfile=<file_name>

Download archive to file_name. If file exists: throw an exception and quit.

$ glacier-cmd download <vault> <archive_id> --outfile=<file_name> --overwrite

Overwrite the existing file_name, if any.

$ glacier-cmd download <vault> <archive_id> --outfile=<file_name> --resume

Attempt to resume download of archive to file_name. Checks:

wvmarle commented 11 years ago

Documentation needs updating to reflect all this.

uskudnik commented 11 years ago

Will you do it or do I just merge?

wvmarle commented 11 years ago

Also rebased.

Will update docs when all changes are done and implemented, so can do that in one go.

wvmarle commented 11 years ago

Conflicts galore - this also did stuff to upload - all now included in parallel_uploads branch.