Windows Bat - The System Cannot Find the File Specified
系统找不到指定的驱动器。
脚本:
:CreateFileList
set LocalDir=%cd%
set FileDir=%1
setlocal enabledelayedexpansion
PUSHD
cd %FileDir%
echo [FILE_LIST] >%testfile%
FOR %%C IN (*) DO (
.\md5sum %%C >a.txt
set /p md5=<a.txt
del a.txt
set option=ER
IF "%%C" == "testInstall.exe" set option=E
IF "%%C" == "testUpdate.exe" set option=E
IF "%%C" == "test1.inf" set option=R
::if exist %test2Dir% (
:: IF "%%C" == "test2.inf" set option=R
::)
IF NOT "%%C" == "%testfile%" (
IF NOT "%%C" == "version" (
echo %%C %ver% !option! !md5! \bin\ >>%testfile%
) ELSE (
echo %%C %ver% !option! !md5! \etc\ >>%testfile%
)
)
)
POPD
endlocal
cd %LocalDir%
goto EXITOUT
reason (原因):
::if exist %test2Dir% (
:: IF "%%C" == "test2.inf" set option=R
::)
methods of resolution (解决方式)
modify :: to rem like this:
rem if exist %test2Dir% (
rem IF "%%C" == "test2.inf" set option=R
rem )
本文探讨了Windows BAT脚本中常见的系统找不到指定的文件或目录错误,详细分析了错误产生的原因,并提供了解决方案。通过修改特定的条件判断语句,可以有效避免错误的发生。
2096

被折叠的 条评论
为什么被折叠?



