|
Answer» Hey GUYS,
Just wondering if any of you have a BATCH file which searchs for files on a computer. Say I'm looking for 5 files, how can I make this easier using batch files. any help would be much appreciated.
Cheers VCreate the Batch file NAMED findfile.bat
Try this coding: echo off REM This program lists all of the %1 files on your HD
echo ************************************** echo. echo A list of the %1 files on Drive C echo. echo ************************************** echo. DIR C:\%1 /B /s /p
|