我可以在 Azure Blob 存储中解压缩文件吗?

发布于 2024-09-25 04:16:01 字数 68 浏览 2 评论 0原文

我的应用程序需要解压缩位于 Azure 的 blob 存储中的 zip 文件。 Azure Blob 存储是否支持解压缩?

My application requires to unzip a zip file located in Azure's blob storage.
Is unzipping supported in Azure blob storage?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

友欢 2024-10-02 04:16:01

开箱即用否,但您可以将所需的任何二进制数据保留在 Blob 存储中并使用 myBlob.DownloadToStream(myStream) ,然后使用您选择的 zip/unzip 库来解压缩流。

Out of the box no, but you can keep any binary data you want in blob storage and use myBlob.DownloadToStream(myStream) and then use your choice of zip/unzip libraries to unzip the stream.

青芜 2024-10-02 04:16:01

一种方法是创建一个带有 blob 触发器的 Azure 函数,该函数需要处理解压缩 zip 文件的逻辑。该解决方案取决于您的代码。

第二种方法是使用 Blob 触发器创建 Azure 逻辑应用程序,然后使用连接器解压缩压缩文件。请参考视频:https://www.youtube.com/channel/UCAr20GBQayL-nFPWFnUHNAA

One way is to create an Azure Function with blob trigger, and the function would need to handle the logic to unzip the zip file. This solution is dependent on your code.

Second way is to create an Azure Logic App, with Blob trigger, then use connectors to unzip the zipped files. Please refer video: https://www.youtube.com/channel/UCAr20GBQayL-nFPWFnUHNAA

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文