Show pageOld revisionsBacklinksBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ====== FOR ====== * when using variables in batch files, use <html>%%i instead of %i</html> ===== delete .tmp files in a given directory ===== **remove_tmp_files.bat** <code> @ECHO OFF cd "C:\somedir" FOR %%f in (*.*) do if %%~xf == .tmp del "%%f" </code> docs/programming/batch_files/for.txt Last modified: 2008/08/03 00:25by 127.0.0.1