Open
Description
v10.20.0
Windows (10)
in Powershell
$AzCopyExe = "path-to-my/AzCopy.10.20.0.exe"
$SAS = '....' #good SAS
$target = "https://mystorageAcc.blob.core.windows.net/dodgy/Not.Exist"
n.b. target container ('dodgy') does NOT exist,, storage account is (Date Lake Storage Gen2 )
. "$AzCopyExe" cp "$target$SAS" "$($target)$SAS"
return is that 0 transfers occurred (well source/target doesn't exist)
HOWEVER it does create said 'dodgy' container, (though not the file), even though surely it should be doing nothing !
Late Note: the container name must be all lower case for this to occur ?!!!