如何在批处理文件中使用compact.exe(默认的Windows压缩)

发布于 2024-12-12 13:40:18 字数 436 浏览 1 评论 0原文

我想使用默认的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

童话 2024-12-19 13:40:18

compact 并没有像你想象的那样,我认为:

显示或更改 NTFS 分区上文件的压缩。

紧凑型[/C | /U] [/S[:dir]] [/A] [/I] [/F] [/Q] [文件名 [...]]

它的作用与转到文件夹属性并选择“压缩内容”相同以节省磁盘空间” - 它不会创建 ZIP (或类似文件)档案。

COMPACT /C /S:"C:\Somefolder"

它将使用 NTFS 压缩 来缩小磁盘上的文件夹 - 不创建 ZIP 文件, 7-Zip 文件或其他文件。

compact doesn't do what you think it does, I think:

Displays or alters the compression of files on NTFS partitions.

COMPACT [/C | /U] [/S[:dir]] [/A] [/I] [/F] [/Q] [filename [...]]

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.

COMPACT /C /S:"C:\Somefolder"

It will use NTFS compression to shrink the folder on disk - not create a ZIP file, 7-Zip file or whatever.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文