Forrest logo
back to context overview

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 machine
    explain this command
  • azcopy:tldr:23f4a azcopy: Display detailed usage information.
    $ azcopy --help
    try on your machine
    explain 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=true
    try on your machine
    explain this command
  • azcopy:tldr:65e82 azcopy: Log in to an Azure Tenant.
    $ azopy login
    try on your machine
    explain 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 machine
    explain 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 machine
    explain this command
back to context overview