
azcopy
List of commands for azcopy:
-
azcopy:tldr:16cdc azcopy: Copy a container directly between two Azure storage accounts.$ azcopy copy 'https://${source_storage_account_name}.blob.core.windows.net/${container_name}' 'https://${destination_storage_account_name}.blob.core.windows.net/${container_name}'try on your machineexplain this command
-
azcopy:tldr:23f4a azcopy: Display detailed usage information.$ azcopy --helptry on your machineexplain this command
-
azcopy:tldr:44263 azcopy: Synchronize a local directory and delete files in the destination if they no longer exist in the source.$ azcopy sync '${path\to\source_directory}' 'https://${storage_account_name}.blob.core.windows.net/${container_name}' --recursive --delete-destination=truetry on your machineexplain this command
-
azcopy:tldr:65e82 azcopy: Log in to an Azure Tenant.$ azopy logintry on your machineexplain this command
-
azcopy:tldr:6a9df azcopy: Upload a local file.$ azcopy copy '${path\to\source_file}' 'https://${storage_account_name}.blob.core.windows.net/${container_name}/${blob_name}'try on your machineexplain this command
-
azcopy:tldr:ce4dc azcopy: Upload files with `.txt` and `.jpg` extensions.$ azcopy copy '${path\to\source_directory}' 'https://${storage_account_name}.blob.core.windows.net/${container_name}' --include-pattern '${*-txt;*-jpg}'try on your machineexplain this command