I have a script, that modifies specific files all the time.
findstr /s /m "BLABLABLA" C:\BLABLABLA\*.BLA > bla.bla
if %errorlevel%=="0" (
BLABLABLA
)
I know that "Blabla" isn't very transparent...
How to make a BAT file. That finds every file with BLA
extension, that contains BLABLABLA
in every place, every folder, every partition.
Iterating through a folder using batch script It does work only in 1 folder.