How to use AZCopy explained with demos - Copy or move data to Azure Storage

Sdílet
Vložit
  • čas přidán 12. 09. 2024

Komentáře • 8

  • @PaddyMaddy26
    @PaddyMaddy26  Před 3 lety +1

    Azure Tutorial: Copying Files with AzCopy
    Synchronize Files to Azure Blob Storage with AZCopy
    How To Copy Files Using Azure AzCopy
    Using AzCopy to upload data to Windows Azure Blob Storage
    Azure AzCopy for Gen 2 Blob Files - Hands On Easy Demo
    How To Manage Files Between Local And Azure Storage With AZCopy And PowerShell
    AzCopy tutorial| How to copy files using Azure AzCopy |Migrate data to Azure storage with AzCopy
    AzCopy | It's uses | Data Migration | AzCopy Practical Demo
    How to use AzCopy to move data with Storage Accounts in Azure
    Using AzCopy to copy blobs from one storage account to another

  • @PaddyMaddy26
    @PaddyMaddy26  Před 3 lety

    Read the documentation @ docs.microsoft.com/en-us/azure/storage/common/storage-use-azcopy-blobs?toc=/azure/storage/blobs/toc.json
    azcopy login
    azcopy login --tenant-id ""
    azcopy copy "C:\AZ\*" "sourcestorageaccountdemo.blob.core.windows.net/testfolder"
    --recursive flag to upload files in all sub-directories.
    azcopy copy "C:\AZ\*" "sourcestorageaccountdemo.blob.core.windows.net/testfolder" --recursive
    Create a container
    azcopy make "deststorageaccountdemo.blob.core.windows.net/demotarget"
    Copy a blob to another storage account
    azcopy copy '.blob.core.windows.net//' '.blob.core.windows.net//'
    azcopy copy "sourcestorageaccountdemo.blob.core.windows.net/testfolder/?sv=2019-12-12&ss=b&srt=sco&sp=rwdlacx&se=2020-10-26T11:15:39Z&st=2020-10-26T03:15:39Z&spr=https&sig=W%2BAQx8ZCTshElQoxludjp8T6Uuz4kx1%2FgCnEtx8bVPg%3D" "deststorageaccountdemo.blob.core.windows.net/demotarget" --recursive

  • @venkataajaykumaryidapalapa7272

    Nice video. While coping local file to azure blob storage, if the filename has a space in between i end up with error. How to deal with filenames with spaces when using AZCOPY. THANKS

  • @ReDone01x
    @ReDone01x Před rokem

    Can you exclude multiple directories with AZ copy? For Example, if I have a directory d:\test and inside I have sub dir Dir1,Dir2,Dir3,Dir4 what if I want to skip 1 & 2 and start the copy process at dir 3 and so on?

  • @anumehachakravarty9127

    How to migrate/copy data from azure blob to aws s3 ??

  • @renatorodriguesmedeiros9569

    hello my friend, thanks for the video...trying to copy from a local file folder but is not working...the taks runs, but it says that 0 files were processed...
    command that I'm using:
    azcopy copy "C:\XML*" "datalake2.blob.core.windows.net/test2"
    Trying to copy 20 xml files as test.
    Any ideas?
    thanks a lot.

    • @PaddyMaddy26
      @PaddyMaddy26  Před 3 lety

      Try with storage explorer...

    • @renatorodriguesmedeiros9569
      @renatorodriguesmedeiros9569 Před 3 lety +1

      @@PaddyMaddy26 Hey. I figured it out.
      There was a slash (\) missing in the end of the local folder address... then it worked.
      Thanks for the video.
      👌🏼