- To find all .txt files inside a folder
Output may defer according to system folder so, write the code and execute/run your batch file
@echo off
dir F:\FolderName\*.txt
it will show all '.txt' files inside "F:\FolderName\"Program
After writing the code, Double-click your batch file, it will list all '.txt' files inside a specific location
:: cmd to find all .txt files inside a folder or location
dir [Folder_PATHNAME]\*.txt
Syntax to find any '.Extension' files inside a folder or location
dir [Folder_PATHNAME]\*.[Extension]
Concept
Coming Soon !
QuickIn order to succeed you must fail, so that you know what not to do the next time.