I'm trying to use the freeware Multiple Find And Replace 1.00 suggested in this question.
Multiple Find And Replace 1.00 http://www.nontube.com/images/screenshot-mfar.png
Unfortunately it requires that I explicitly select each file I'd like it to search.
But, it does allow me to load in a text file of the file paths.
C:\one.txt C:\two.txt C:\somedirectory\three.txt
I'd like a text file of paths to all files with extension .php within a certain directory and all its subdirectories (recursive).
Does anyone know of a ready-made tool I can use to quickly generate such a list of files?
You can use built-in DOS commands like so:
cd /d "[base-directory]" && dir /s /b *.php > [list file]
e.g.
cd /d "c:\my files" && dir /s /b *.php > c:\list.txt
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With