home *** CD-ROM | disk | FTP | other *** search
- @echo off
- cls
- echo Here all .BAK files will be found and deleted. You will be asked to confirm
- echo each file deletion.
- echo.
- echo Press any key to begin searching...
- pause >nul
- REM Note use of double %% below. Double %% are used instead of single % in
- REM batch files.
- echo on
- ffg *:*.bak /eDEL%%_%%n
- @echo off
- echo Done. Press any key for next demonstration...
- pause>nul
-