Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

AZCopy, see errors and failed transfer info

when using AZCopy to download files, how do I get information about what files failed to transfer, and what the error was? All I get is a message stating how many files failed.

sudo azcopy \
    --source <url> \
    --destination <path> \
    --source-key <key> \
    --include "<something>" \
    --recursive

I did see this post AZCopy Get list of failed transfer files, but the --V parameteter isn't recognized.

I also tried

--verbose < path> \

but it's not recognizing the path parameter, either with or without quotation marks.

like image 759
user984003 Avatar asked Dec 08 '25 09:12

user984003


1 Answers

You should just check the status with azcopy jobs show:

azcopy jobs show <job-id> --with-status=Failed
like image 178
Den Delimarsky Avatar answered Dec 11 '25 21:12

Den Delimarsky