我正在尝试将 csv 文件上传到 azure 文件共享。以下是我正在使用的 cmdlet:
$folderPath="/"
$ctx=(Get-AzStorageAccount -ResourceGroupName 'rg-aexch' -Name 'storaexch').Context
$fileShare = Get-AZStorageShare -Context $ctx -Name "fs-aexch"
Set-AzStorageFileContent -Share $fileShare -Source "E:\ Exc\dash\batch1.csv" -Path $folderPath -Force
但我收到以下错误:
Set-AzStorageFileContent:无法绑定参数“共享”。无法将类型“Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageFileShare”的“Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageFileShare”值转换为类型“Microsoft.Azure.Storage.File.CloudFileShare”。在行:13 字符:37
-
Set-AzStorageFileContent –Share $s –Source $localFile
-
~~
- CategoryInfo : InvalidArgument: (:) [Set-AzStorageFileContent], ParameterBindingException
- fullyQualifiedErrorId:CannotConvertArgumentNoMessage,Microsoft.WindowsAzure.Commands.Storage.File.Cmdlet.SetAzureStorageFileContent