gpt4 book ai didi

scripting - MS 批处理 : Check if drive is in use

转载 作者:行者123 更新时间:2023-12-02 00:19:39 28 4
gpt4 key购买 nike

我需要检查驱动器 (Z:) 是否正在使用中(例如,正在被应用程序使用、打开)。

我的批处理文件如下所示:

Mount Z:
wait 15 minutes
check if drive Z: is in use

IF NOT: unmount Z:
ELSE: wait 15 minutes
repeat..

有什么命令吗?谢谢!

最佳答案

使用IF EXISTIF NOT EXIST 组合:

:FindDrive
if exist Z:\nul goto Mounted
timeout /T 5
goto FindDrive
:Mounted

NUL 是存在于每个文件夹中的“虚拟”文件。因此,如果 c:\anypath\nul 存在,则该驱动器存在。

关于scripting - MS 批处理 : Check if drive is in use,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11495908/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com