ajscorsa
Member
Registered: 30th Apr 02
Location: Perceton, North Ayrshire
User status: Offline
|
Wonder if you guys can help.
I need to Make a list of the folders inside a certain folder, there's over 600 so I dont wanna type them out separately if I can help it. Is there any way or a program I can use to list the folders?
Cheers
|
sc0ott
Member
Registered: 16th Feb 09
User status: Offline
|
Cant you highlight them all and right click > rename and theyll all be renamed to the same but with a number at the end?
|
Ian
Site Administrator
Registered: 28th Aug 99
Location: Liverpool
User status: Offline
|
Do you have the list?
Use a text editor like Notepad2 to replace the start of the line with mkdir
If you just need the numerical, something like Excel can be used for similar.
Give me the proper instructions and I'll make it later if you don't sort it.
|
Ian
Site Administrator
Registered: 28th Aug 99
Location: Liverpool
User status: Offline
|
http://www.flos-freeware.ch/notepad2.html
Use ^ symbol for the start of the line, turn on regular express searching.
|
Dom
Member
Registered: 13th Sep 03
User status: Offline
|
Sounds like you just want a text list of directories in which case in command line do (replace C:\SomeDirectory with the path of directory you want a list of) -
code: dir C:\SomeDirectory /D/B > C:\list.txt
This will dump a text file list of directories in your C:\ directory.
[Edited on 05-11-2011 by Dom]
|
ajscorsa
Member
Registered: 30th Apr 02
Location: Perceton, North Ayrshire
User status: Offline
|
That is exactly what I want mate. Can I copy and paste out of cmd?
I'll have a look at that site when I get home Ian cheers
|
John
Member
Registered: 30th Jun 03
User status: Offline
|
Doms command will put it into a text file called list.txt on your c drive.
|
ajscorsa
Member
Registered: 30th Apr 02
Location: Perceton, North Ayrshire
User status: Offline
|
Dom I think I love you haha cheers mate worked perfectly
|