We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 74a6797 commit 6dfd0ddCopy full SHA for 6dfd0dd
eng/common/scripts/copy-from-blobstorage.ps1
@@ -0,0 +1,12 @@
1
+param (
2
+ [Parameter(Mandatory = $true)]
3
+ [string] $SourceBlobPath,
4
5
+ [string] $ApplicationId,
6
7
+ [string] $DestinationDirectory
8
+)
9
+
10
+azcopy login --service-principal --application-id $ApplicationId
11
+Write-Host "Copying from $SourceBlobPath to $DestinationDirectory ..."
12
+azcopy cp "${SourceBlobPath}/*" $DestinationDirectory --recursive=true
0 commit comments