Search found 3 matches

by TemplarDrake
18 Mar 2015 09:04
Forum: DOS Batch Forum
Topic: Need help! (cd ../ mkdir tmp)
Replies: 6
Views: 4668

Re: Need help! (cd ../ mkdir tmp)

Another question!

Need to create subdirectories based on file extensions.

FOR %%i IN (.) DO (
ECHO ..\unpacked\%%~xi
)

The above code provides extension with a period. How can I get rid of the period?

Thanks in advance!
by TemplarDrake
17 Mar 2015 04:28
Forum: DOS Batch Forum
Topic: Need help! (cd ../ mkdir tmp)
Replies: 6
Views: 4668

Re: Need help! (cd ../ mkdir tmp)

Thanks man!! :lol:
by TemplarDrake
17 Mar 2015 03:57
Forum: DOS Batch Forum
Topic: Need help! (cd ../ mkdir tmp)
Replies: 6
Views: 4668

Need help! (cd ../ mkdir tmp)

Hi guys! First post so be gentle! I am not sure I found the right place, so if I did not please see if you can direct me somewhere I can find the solution! I am posting for a friend so I don't know all the details. Trying to pack/unpack on Github and for that we need a bat file for Windows. So far w...