• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

How To: Quickly Make Folders in XP

Page 3 - Seeking answers? Join the AnandTech community: where nearly half-a-million members share solutions and discuss the latest tech.
another suggestion from me - if you just had the folder names listed one per line in a text file called folders.txt, then even quicker is :

FOR /F "eol=; tokens=* delims=, " %i in (folders.txt) do @md "%i"
 
I have always wanted to figure out a way to map the new folder option to a mouse click or something. It's insanely annoying having to right click, new folder, each and every time I want a new folder.
 
Originally posted by: austin316
sorry guys. I didn't mean to insult everyone's intelligence with this tip. maybe someone should just delete the thread.

It was a good tip that illustrates that gui combined with command line makes you faster.

😀



You can also make one folder then Ctrl+drag to make Copy, Copy (2), Copy (3), etc.
 
Originally posted by: Smilin
Originally posted by: austin316
sorry guys. I didn't mean to insult everyone's intelligence with this tip. maybe someone should just delete the thread.

It was a good tip that illustrates that gui combined with command line makes you faster.

😀



You can also make one folder then Ctrl+drag to make Copy, Copy (2), Copy (3), etc.

right, but not in the correct naming convention.
 
Oh what the heck.. I'll fuel the fire.

My language is better than your language, my OS is better than your OS, and your face is ugly.
 
check out the v2 of Windows PowerShell... you'll like it much more than the cmd shell and find it even more powerful when you integrate it with things like excel or scriptlets or whatever.
Of course personally I'm more of an cygwin / bash / emacs kind of guy usually but PS is ok when I'm stuck without a real OS. 🙂
I beat you all -- I recently made about 40,000 folders. Bash / PowerShell scripts, go go go!

 
the best way to do this would be make a text file with the folder names. call it list.txt

then create a batch file with the following:
for /f %%a in (list.txt) do md %%a
 
You could just create a new folder on your desktop, then when you want a new folder somewhere in an explorer window that is open just drag the one from your desktop over to the window in "copy" mode by holding shift or ctrl or whatever it is and voila, a new folder wherever you want it for two clicks and a drag.

Or grab a copy of Visual Studio and make a one-click folder create program that registers as an explorer toolbar/extension/whatever... of course then Amazon might sue you over a 1-click patent... *puke*

Originally posted by: Nocturnal
I have always wanted to figure out a way to map the new folder option to a mouse click or something. It's insanely annoying having to right click, new folder, each and every time I want a new folder.

 
Originally posted by: austin316no. I had to make 300 folders. the old way I would have to right click and type the names of 300 folders. HOWEVER, I had all 300 folder names in an excel file. I took those cells, pasted them into notepad and then into the command prompt and voila, I had 300 folders made in 1 minute, instead of about a 1/2 hour to an hour.

first i tried it with a control v.

then i used the mouse, right click, paste.

yes it works.

http://www.newfolder.com/

that domain name is taken !
 
Back
Top