Continue to Site

Welcome to MCAD Central

Join our MCAD Central community forums, the largest resource for MCAD (Mechanical Computer-Aided Design) professionals, including files, forums, jobs, articles, calendar, and more.

Finding and Printing all files that

jelston

New member
I am back and posting with a VENGENCE!


Okay, I want to find (not problem) and print a list of (the problem) all files that begin with prt*.prt. I have quite a few(rookie mistakes early on)so print screen is not sufficient. Is it possible to print a list of results from the search function in windows?
 
if you use the command prompt, you can use the command


dir prt*.prt* /s | prtlist.txt


this seaches for all files that begin with prt*.prt, looks through all sub-directories (/s) and saves the output to a text file in the current directory calles prtlist.txt, creating the file if it doesn't exist.
 
If you use the /B option youonly get thefilenames and not directory headings.


E.G


dir prt*.prt* /b /s > prtlist.txt
 

Sponsor

Articles From 3DCAD World

Back
Top