我一直在处理一个批处理文件来搜索一个文件夹,如果它存在,则使用该变量执行 goto 命令。它可以工作,但是每次您收到垃圾邮件时:“驱动器中没有磁盘。请将磁盘插入驱动器到 \device\hardisk1\dr21 等等。有没有办法可以防止此消息弹出?
批处理文件:
@echo off
setLocal Enabledelayedexpansion
for %%d in (a b c d e f g h i j k l m n o p q r s t u v w x y z) do (
if exist %%d:\custom\ (
ECHO Device Found : %%d
)
)