如何制作一个同时也是 zip 文件的 .net 应用程序?
我知道这是可以做到的。您能否展示如何创建一个 .net exe,它也可以使用任何 zip 文件浏览器作为 zip 文件打开?
I know this can be done. Can you show how to create a .net exe which also can be opened as a zip file with any zip file browser?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
可能你的意思是一个自解压文件,但我发现你的问题很有趣,因为有一种方法可以创建一个既可以作为 jpeg 也可以作为 zip 打开的文件,如下所示:(
在 Windows 命令行中)
Probably you meant a self extracting file, but I found your question interesting because there is a way to make a file that can be opened both as a jpeg and as zip like this:
(in Windows command line)
可能比使用 .NETZ 工具 更好
May be better than that you can use .NETZ Tool
您基本上想要创建一个自动执行的 ZIP 文件。 看看这个。至少这是假设你的意思,如果不是,请提供更多细节......
You basically want to create a self executing ZIP file. Have a look at this. At least that is assuming what you mean, if not please provide further details...
DotNetZip 制作自解压 zip 存档,您可以包含一个在解压时运行的命令。
另请参阅:创建 Zip 提取器
DotNetZip makes self-extracting zip archives, and you can include a command to run on extract.
see also: Creating a Zip Extractor