Search path for folder and ALL subfolders?
Search path for folder and ALL subfolders?
(OP)
Is there an easy way to add a folder and all of it's subfolders to a search.pro file?
INTELLIGENT WORK FORUMS
FOR ENGINEERING PROFESSIONALS Come Join Us!Are you an
Engineering professional? Join Eng-Tips Forums!
*Eng-Tips's functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail. Posting GuidelinesJobs |
Search path for folder and ALL subfolders?
|
RE: Search path for folder and ALL subfolders?
Switch to the C:\ directory and then type in the following:
dir /s /on /b /a:d > listing.txt
This will generate a listing of all the subdirectories from the root directory on down and put them in a file called listing.txt.
You can run this from any directory and get a subdirectory listing.
From this generated output, create your search.pro file as required.
--
Fighter Pilot
Manufacturing Engineer
RE: Search path for folder and ALL subfolders?
I've inherited a bunch of assemblies from another user and don't have their old search.pro files... this will save me a bunch of time.
RE: Search path for folder and ALL subfolders?
RE: Search path for folder and ALL subfolders?
--
Fighter Pilot
Manufacturing Engineer
RE: Search path for folder and ALL subfolders?
1. Open and manually find the location of the parts as the assembly & sub assemblies fail to open.
2. Add all directories to a seach.pro file and open the assembly.
Either way, once it's open I'll be saving copies of them so that no one else has to go through this mess.
Thank you to both of you for your help.