Hello !!!
What is the best way to open all folders that start with the same 3 characters?
Run Program>explorer c:\win* not work
Greetings,
Reimon
Open all folders that start with the same 3 characters?
Moderators: JRL, Dorian (MJT support)
- Marcus Tettmar
- Site Admin
- Posts: 7395
- Joined: Thu Sep 19, 2002 3:00 pm
- Location: Dorset, UK
- Contact:
I don't think Windows Explorer accepts a wildcard in that fashion.
How about this:
How about this:
Code: Select all
Let>GFL_TYPE=1
GetFileList>c:\win*,folder_list,;
Separate>folder_list,;,folders
Let>k=0
Repeat>k
Let>k=k+1
Let>this_folder=folders_%k%
Run>explorer %this_folder%
Until>k=folders_count
Marcus Tettmar
http://mjtnet.com/blog/ | http://twitter.com/marcustettmar
Did you know we are now offering affordable monthly subscriptions for Macro Scheduler Standard?
http://mjtnet.com/blog/ | http://twitter.com/marcustettmar
Did you know we are now offering affordable monthly subscriptions for Macro Scheduler Standard?
Open all folders that start with the same 3 characters?
OK. thanks a lot !!!