从存储在 blob 存储中的 zip 存档中提取文件并将其复制到本地文件夹
我已将 zip 文件存储在 blob storage 中。我已经将存档从 blob 读取到流 代码如下
string blobUrl = http://127.0.0.1:10000/devstoreaccount1/usercontrols/ucProfileViewSMSIS.zip";
string containerName = "usercontrols";
Storage.Blob blobHandler = new Storage.Blob();
Stream blobstream = blobHandler.GetBlob(blobUrl, containerName);
我的存档中有三个文件。我想将这 3 个文件写入我的本地文件夹。
我该怎么做?
I have stored my zip file in blob storage . I already read archive from blob to stream
.Code is as follows
string blobUrl = http://127.0.0.1:10000/devstoreaccount1/usercontrols/ucProfileViewSMSIS.zip";
string containerName = "usercontrols";
Storage.Blob blobHandler = new Storage.Blob();
Stream blobstream = blobHandler.GetBlob(blobUrl, containerName);
I have three files in my archive . I want to write write those 3 files to my local folder .
How do I do this ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您将需要一个解压缩库,例如 DotNetZip 来解压缩文件。在示例部分下,有一种直接解压的方法一个流:
You will need an unzip library like DotNetZip to unzip the files. Under the examples section, there is a method to unzip directly from a stream: