download

Download storage to machine.

download [--recursive] [--overwrite | --merge | --skip]

Download files and folders to machine.

Parameters:

  • source: Absolute or relative path to download.
  • destination: File system path to save download.
  • --recursive: Optional flag to download folders.
  • --merge: Optional flag to skip existing files with the same size.
  • --overwrite: Optional flag to overwrite existing files.
  • --skip: Optional flag to skip existing files.

Example:

Download file to temp directory.

$ explore download maui.jpg ~/temp
$

Download folder to temp directory.

$ explore
explorer> download media ~/temp --recursive

Processed 10 items with 0 errors.
explorer> 

Download files in folder (excluding subfolders) to temp directory.

$ explore download media/* ~/temp

Processed 10 items with 0 errors.
$

Update local folder with remote folder.

$ explore
explorer> download media /temp --recursive --merge

Processed 10 items with 0 errors.
explorer>

Replace local file with remote file.

$ explore download maui.jpg ~/temp/maui.jpg --overwrite
$