I'm a photographer an need to make a tree of folders with names of customers. I have a customer list in an .xls or .txt file, can this be done automatically so it saves me much time. can someone help me, i just downloaded autohotkey or is there an other way to do this.
Thanx a bunch
Edwin From www.Medsofoto.nl
-reddie247
Hello there.
Let's say you have a file called clients.txt with the following contents
Albert\Birthday
Albert\Wedding
John\Daughter\Birthday
John\Sister\Wedding
Martin
Michael
John Doe
the console command
for /f "delims=" %t IN (clients.txt) do mkdir "%t"
will create the following folder structure, without needing an external program

Have fun, and welcome to the forums!