- To find all files inside a folder with specific keyword
Output may defer according to your system folder so, write the code and execute/run your batch file
@echo off
dir F:\FolderName\ | find "abc"
It will show all files & folders inside "F:\FolderName\" having "abc" in their names like: tabca.txt abcaa.bat aaabc.batProgram
After writing the code, Double-click your batch file, it will list all files & folders with specific keyword
:: cmd to find all files & folder with specific keyword
dir [Folder_PATHNAME]\ | find "[KEYWORD]"
Concept
Coming Soon !
QuickStrength does not come from winning. Your struggles develop your strengths.