如何在asp.net1.1中创建空的Zip文件夹
我正在 ASP.NET 1.1 中执行上传功能。 我想在给定路径上创建一个空的 zip 文件夹。
那么,如何创建一个空的 zip 文件夹呢?
稍后我会将文件保存在该文件夹中。我不想使用任何第三方组件。
I'am doing upload functionality in ASP.NET 1.1.
I want to create one empty zip folder on given path.
So, how to create an empty zip folder?
Later on I will save files in that folder. I do not want to use any third party component.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有几个第三方组件可以执行此操作。从头开始写一个会很费力,我不推荐它。为什么要求不使用现有的库?在 .NET 的开源 zip 库?。
如果您真正想要的只是一个空的 zip 文件,只需将一个文件添加到您的解决方案中并根据需要将其复制到位即可。
There are a couple of third-party components that do this. Writing one from scratch would be a big effort, I do not recommend it. Why the requirement not to use an existing library? There are some suggested in the answers for Open-source zip library for .NET?.
If all you really want is an empty zip file, simply add one to your solution and copy it into place as necessary.