自解压 ZIP?
我需要帮助创建一个不显示任何内容的自解压 zip 文件。我只需要它将文件提取到后台的给定位置。我找到的所有内容都会显示一个对话框,但我需要它在后台运行。
I need help creating a self extracting zip file that does not display anything. I just need it to extract the files to a given place in the background. Everything I have found displays a dialog, but I need it to just run in the background.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您不介意使用命令行程序,可以在这里尝试:
http://www .info-zip.org/UnZip.html
它基于 ZLib,一个免费的(类似 BSD )压缩和解压缩库。
If you don't mind using a command line program, you can try here:
http://www.info-zip.org/UnZip.html
It's based on ZLib, a free (BSD-like) zip and unzip library.
我建议使用 7Zip。它不仅可以处理 zip 格式,还具有命令行,可以轻松与 python 或 vb 脚本集成。
I recommend using 7Zip. It can handle more than just zip format, has a command line making it easy to integrate with python or vb scripts.
您可以使用python的 zipfile 模块,并使用指定目录调用 extract 或 extractAll 方法。 ..
you can use python's zipfile module, and call extract or extractAll method with specified directory....