我写了一个脚本来检查文件是否存在,然后给我发一封邮件。但它不能正常工作。如果提供任何建议或解决方案,非常感谢..我的脚本如下..
SET file1=E:\Program.*
Set vLogFile=C:\logfile1.log
if exist %file1% goto fileexists
goto nofile
:fileexists
echo "File exist" > %vLogFile%
--my required mail sending info here--
goto end
:nofile
echo "No file exist" > %vLogFile%
--my required mail sending info here--
goto end