我正在尝试使用 Powershell 将 .CSV 文件转换为 .ZIP,然后将 ZIP 文件存储在 Azure blob 存储中。
Invoke-Sqlcmd -ServerInstance $SvrName -Database $dataname -Username $UserName -Password $Password -Query $getTABLEdetails | Export-CSV $filename1 -Append -NoTypeInformation
使用上述命令,我将输出存储在 .CSV 文件中。现在我想将 .CSV 文件转换为 .ZIP 文件。并将 ZIP 文件存储在 Azure blob 存储中。
$context = New-AzureStorageContext -StorageAccountName 'Accountname' -StorageAccountKey 'storagekey'
Set-AzureStorageBlobContent -Container zipfiles -File $filename1 -Blob $filename1 -Context $context -Force
使用上述命令,我可以将其存储在 .CSV 文件中。但我想以 .ZIP 格式存储文件。
他们有什么办法可以做到这一点吗?
请帮忙