Search found 2 matches
- 12 Jun 2013 17:06
- Forum: DOS Batch Forum
- Topic: Opening a folder that starts with some charaters
- Replies: 2
- Views: 2637
Re: Opening a folder that starts with some charaters
for /D %%a in ("\\SERVER923\data\!start!00-!end!99\!UserInput!-*") do ( %SystemRoot%\explorer.exe "%%~a" ) This doesn't seem to work. In tried placing this in the else section and outside it... am I missing something? Wooops. Nevermind... It works!! Thanks so much Aacini!
- 12 Jun 2013 15:58
- Forum: DOS Batch Forum
- Topic: Opening a folder that starts with some charaters
- Replies: 2
- Views: 2637
Opening a folder that starts with some charaters
Hello, I need some help finishing this up. Its going to be a shortcut to opening a specific folder in a very large directory structure. An example folder location would be \\SERVER923\data\10900-10999\10956-somename-anothername I want the user to open the batch file, enter 5 digits, hit enter and ha...