我已将 Azure Active Storage 用于使用 Rails v6 开发的应用程序上上传的所有用户文件。工作得很好。
现在我想将应用程序上上传的文件复制到另一个 Azure 存储帐户。我该如何采用这种方法。任何帮助将不胜感激。
您可以在后端使用 https://github.com/Azure/azure-storage-ruby。
我正在将文件从一个容器复制到同一存储帐户中的另一个容器,这样我就可以执行以下操作:
blob_service.copy_blob(azure_storage_container_name, destination_blob, container_name, blob.name)
但还有:
blob_service.copy_blob_from_uri(azure_storage_container_name, blob.name, source_uri)
我正在考虑是否我们在不同的帐户之间进行操作。