The following DOS command can be used to search all the files with extension .aspx in the the current directory and all sub directories.
dir /s *.aspx
If you receive more than expected results, you may need to type /p after the command. Using /p displays the results one page at a time.
The following command
dir *.aspx /s > search-result.txt
will save the output into a text file search-result.txt.
© 2024 Digcode.com