AzCopy is a command-line utility which allows to upload or download files between Windows Azure Blob Storage and the local file system
Questions tagged [azcopy]
324 questions
4
votes
2 answers
INFO: Scanning in Azcopy taking too much time
I did an Azcopy command
azcopy copy "C:\local\path"…

Blue Clouds
- 7,295
- 4
- 71
- 112
4
votes
1 answer
AzCopy in Batch file
Am trying to copy files to Azure Blob using AzCopy.
When execute AzCopy at command line it works fine, but executing same through .bat file getting issues.
ex: azcopy copy "c:\xxxxxxx\20210304"…

Sreedhar
- 29,307
- 34
- 118
- 188
4
votes
3 answers
using AZCOPY with only connectionstring
I am provided with only a 'connection string' for azcopy.
Connectionstring: DefaultEndpointsProtocol=https;AccountName=someaccoutname;AccountKey=someaccountkey;EndpointSuffix=core.windows.net
URL:…

Aflred
- 4,435
- 6
- 30
- 43
4
votes
4 answers
AzCopy Sync command is failing
I'm issuing this command:
azcopy sync "D:\Releases\Test\MyApp" "http://server3:10000/devstoreaccount1/myapp?sv=2019-02-02&st=2020-06-24T03%3A19%3A44Z&se=2020-06-25T03%3A19%3A44Z&sr=c&sp=racwdl&sig=REDACTED"
...and I'm getting this error:
error…

InteXX
- 6,135
- 6
- 43
- 80
4
votes
0 answers
What is the "storage blob data reader" role in Azure?
I would like to have one of our virtual machine instances have permissions to download blobs but not to delete or upload. However, it appears that the "storage blob data reader" permissions do not allow this. In order to download a blob, I have to…

Andy Norris
- 93
- 1
- 7
4
votes
0 answers
AZCopy - MD5 calculated and MD5 in property always miss matching?
Why Azcopy MD5 in property and MD5 calculated always miss matching - is there any specific reason for it? or any thing that we need to take care if that needs to be matched.
Azcopy Code as below :
In below MD5 calculated: OxsjX5iE8FnUyV7pnq6fOQ==…
4
votes
3 answers
Does Azcopy support piping?
Here is my scenario
Invoke-sqlcmd -query "Select * from master.sys.table" -ServerInstance myserver -database -mydb | convert-csv | select -skip 2 | .\7z.exe a -si tgzip $gzipedfilename
Now I am taking that $gzipedfilename and uploading to blob…

HimalayanNinja
- 421
- 3
- 11
4
votes
2 answers
Using Command Line from C# to copy container using AzCopy
I'm trying to copy containers in Azure from one storage location to another. I'm using the AzCopy command for this. First I get a list of all the containers and then run AzCopy based on the container name from the command line, using c# code.
The…

chillax786
- 369
- 4
- 14
3
votes
1 answer
Copying files using azcopy running in a batch file
I want to execute a batch file (Through Task Scheduler) that runs azcopy and copies only the new files to the server. I've succeeded in configuring the task scheduler, but I'm failing to properly execute the batch file.
I've done extensive research…

Jose A
- 10,053
- 11
- 75
- 108
3
votes
0 answers
Can an azcopy job be resumed from a different machine or location?
Issue
I have an azcopy job running, copying a 200gb directory from local to an Azure file share. I need to stop this job and resume it later from either:
a) Different PC, same location.
b) Same PC, different location.
My question is will resuming…

CB Midkiff
- 165
- 1
- 14
3
votes
1 answer
azcopy sync fails with not authorized error
I am trying to sync a local documentation folder to the destination container at Azure blob storage for a static site. Microsoft Azure Storage Explorer works great - transfers local files to $web. I am now trying to speed it up using the Powershell…

Manish
- 1,726
- 3
- 23
- 29
3
votes
1 answer
AzCopy v10.5.1: error copying from file share to blob container
I'm getting an error trying to copy all files from an Azure File Share to a Blob Container within the same Storage account.
$rg = "[REDACTED]"
$storageAccount = "[REDACTED]"
$storageAccountKey = (Get-AzStorageAccountKey -ResourceGroupName $rg…

CLiFoS
- 1,163
- 2
- 9
- 11
3
votes
3 answers
How to handle AZcopy failed file transfers
I am copying a huge number of small files from local file system to Azure blob storage.
Very few files fail to upload.
It seems that AZcopy just logs these failures and there is no easy way to retry to upload these files.
It is not feasible…

jayt.dev
- 975
- 6
- 14
- 36
3
votes
2 answers
Azcopy: Is it possible do resume a download with a new SAS key
I started downloading a bigger blob of data (around 500GB) yesterday using azcopy. I had it run overnight, and - as these things go when you have big downloads / uploads - my Windows Desktop decided that it has an important update and needs to…

FirefoxMetzger
- 2,880
- 1
- 18
- 32
3
votes
4 answers
AzCopy - breaks on location with $ (dollar sign)
Goal is to copy straight into my blob container named "$web".
Problem is, dollar signs seem to break AzCopy's location parsing...
AzCopy.exe /Source:"C:\temp\" /Dest:"https://mystorage.blob.core.windows.net/$web" /DestKey:"..." /SetContentType…

paws
- 1,263
- 15
- 23