Tuesday, November 4, 2014

DOS: List files recursively

To list files recursively in Windows you don't need a complex script as I thought. For example to list all .html inside subfolders you can just run simple DOS command:

dir /s/b *.html > results.txt

No comments:

Post a Comment