| 1. |
Solve : create mulitiple folders fast? |
|
Answer» i have a text file that has over 1000 folder names, i have to creat a folder for each name in the text file. can anybody recommend a way to do this fast, using a program or dos command. I am current manually adding the folders Just google "creating multiple folders" and you'll find something.If the text file has the paths listed in a SIMPLE, line-by-line type of way, I'd create a batch program. For example, if my file had something LIKE: for /F "usebackq delims=" %%I in ("filename") do ( Something like that? |
|