Create a batch file FILEFIND.BAT with the following contents:
Use the batch file like this to search for files with the extension ".DOC":FOR %%D IN (C D E F G H I J K L M N O P Q R S T U V W X Y Z) DO IF EXIST %%D:\. DIR %%D:\%1 /S /P /A /B
FILEFIND *.DOC
Leave a Reply