Saved Bookmarks
| 1. |
Solve : batch file, to see if file/folder exist? |
|
Answer» hey all.. lol guilty until proven inocentYep Try this: Code: [Select]echo off if exist "C:\file.ini" ( echo. File Exists pause exit ) else ( echo Random Text >>"C:\file.ini" exit ) You may have to adapt the code though. |
|