如何在批处理文件中使用compact.exe(默认的Windows压缩)
我想使用默认的 Windows 压缩实用程序来压缩批处理文件中的目录。目前我正在使用以下命令,但它不起作用。
COMPACT /C /S source destination
如何从批处理文件中使用它?
目前,我正在使用 7-Zip 做同样的事情,但我需要做同样的事情与compact.exe
。
START "Compressing Backup. DO NOT CLOSE" /belownormal /wait "%exe&Zip%" a -tzip -r -mx5 "%BackupFileDestination%" "%dirTempBackup%\"
I want to use the default Windows compression utililty for compressing a directory in a batch file. Currently I am using the following command, but it's not working.
COMPACT /C /S source destination
How do I use this from a batch file?
Currently, I am doing the same using 7-Zip, but I need to do the same with compact.exe
.
START "Compressing Backup. DO NOT CLOSE" /belownormal /wait "%exe&Zip%" a -tzip -r -mx5 "%BackupFileDestination%" "%dirTempBackup%\"
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
compact
并没有像你想象的那样,我认为:它的作用与转到文件夹属性并选择“压缩内容”相同以节省磁盘空间” - 它不会创建 ZIP (或类似文件)档案。
它将使用 NTFS 压缩 来缩小磁盘上的文件夹 - 不创建 ZIP 文件, 7-Zip 文件或其他文件。
compact
doesn't do what you think it does, I think:It does the same as going to the folder properties and chosing "Compress contents to save disk space" - it does not create a ZIP (or similar) archive.
It will use NTFS compression to shrink the folder on disk - not create a ZIP file, 7-Zip file or whatever.