将 IF 条件放入批处理文件中?

发布于 2024-12-04 17:42:36 字数 125 浏览 1 评论 0原文

我想检查 C: 驱动器中的空间是否超过 60 GB,则应执行下一步,如果空间较小,则应显示一条消息?

为了检查磁盘空间,我可以使用“fsutil volume diskfree c:”,但我不知道如何在上述条件下使用它。

I want to check if space in C: drive is more than 60 GB then next step should be done and if space is less it should display a message?

For checking the disk space i can use "fsutil volume diskfree c:" but i dont know how to use it inside the above condition.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

花辞树 2024-12-11 17:42:36

假设您可以将 1 GB 视为 109 字节,而不是 230 字节,您可以简单地

1) 通过管道传输 FSUTIL 的结果使用 FIND 实用程序过滤掉不相关的行,

2) 在 FOR /F 循环中使用修改后的命令行将输出存储到变量中,

3) 切断最后的从变量值中提取 9 个字符,并将其余字符与所需数量进行比较。

这是我将上述步骤放在一起的尝试:

@ECHO OFF
SET required=60
FOR /F "tokens=2 delims=:" %%A IN ('fsutil volume diskfree c: ^| find "# of bytes"') DO SET "space=%%A"
IF %space:~0,-9% LSS %required% ECHO Space is less than %required% GB!

上面的脚本处理总空间。如果您想检查可用空间,请将“# of bytes”更改为“# of free”

Assuming you are fine with treating 1 GB as 109 bytes, not as 230 bytes, you could simply

1) pipe the results of FSUTIL to the FIND utility to filter out irrelevant rows,

2) use the modified command line in a FOR /F loop to store the output into a variable,

3) cut off the last 9 characters from the variable's value and compare the rest to the required quantity.

And here's my attempt at putting the above steps together:

@ECHO OFF
SET required=60
FOR /F "tokens=2 delims=:" %%A IN ('fsutil volume diskfree c: ^| find "# of bytes"') DO SET "space=%%A"
IF %space:~0,-9% LSS %required% ECHO Space is less than %required% GB!

The above script processes the total space. If you want to check the free space, change "# of bytes" to "# of free".

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