한국어
Windows Programming
 

특정 파일이 있는지 확인하는 배치 스크립트

@echo off
:1
if exist "%userprofile%\desktop\file.exe" (
echo The file is ready
pause
exit
) else (
goto :1
)