Options (3)
booleanUpload a local file
Example:
azcopy {{[c|copy]}} '{{path/to/source_file}}' 'https://{{storage_account_name}}.blob.core.windows.net/{{container_name}}/{{blob_name}}'booleanSynchronize a local directory and delete files in the destination if they no longer exist in the source
Example:
azcopy {{[s|sync]}} '{{path/to/source_directory}}' 'https://{{storage_account_name}}.blob.core.windows.net/{{container_name}}' --delete-destination true-h, --helpbooleanDisplay help
Example:
azcopy {{[-h|--help]}}Examples (6)
Upload a local file
azcopy [c|copy] 'path/to/source_file' 'https://storage_account_name.blob.core.windows.net/container_name/blob_name'Upload files with `.txt` and `.jpg` extensions
azcopy [c|copy] 'path/to/source_directory' 'https://storage_account_name.blob.core.windows.net/container_name' --include-pattern '*.txt;*.jpg'Copy a container directly between two Azure storage accounts
azcopy [c|copy] 'https://source_storage_account_name.blob.core.windows.net/container_name' 'https://destination_storage_account_name.blob.core.windows.net/container_name'Synchronize a local directory and delete files in the destination if they no longer exist in the source
Display help
azcopy [-h|--help]made by @shridhargupta | data from tldr-pages