如何使用 PowerShell 将块添加到现有的 Azure 存储 BLOB?
How to add block to existing Azure Storage BLOB using PowerShell?
如何向 Azure 存储中的现有块 BLOB 添加块?理想情况下,这将使用 PowerShell 完成。但是,我在 Azure.Storage PowerShell 模块中看不到这样做的任何方法。
如果您想将 blob 上传到 Azure Blob 存储,您应该使用 Set-AzureStorageBlobContent 命令(注意:有一个参数可以覆盖现有的 blob)查看文档 Azure.Storage or there are other ways too, like phyton module or AzCopy command, take look to AzCopy
目前Azure.Storage模块中的cmdlet,只支持上传整个blob,不支持更新部分blob。
如何向 Azure 存储中的现有块 BLOB 添加块?理想情况下,这将使用 PowerShell 完成。但是,我在 Azure.Storage PowerShell 模块中看不到这样做的任何方法。
如果您想将 blob 上传到 Azure Blob 存储,您应该使用 Set-AzureStorageBlobContent 命令(注意:有一个参数可以覆盖现有的 blob)查看文档 Azure.Storage or there are other ways too, like phyton module or AzCopy command, take look to AzCopy
目前Azure.Storage模块中的cmdlet,只支持上传整个blob,不支持更新部分blob。