Sunday, October 10, 2010

To get Your files names

If You want to get a List of Files in text file form.
Then enter in Dos Or command promt



"dir /B > list.txt"
if you want everything on the drive, drop to the command prompt , type c:\ [ENTER] to go to root, and type:

dir /s > everything.txt

this will give you a file in the root directory called everything.txt that has, well, everything.

If you want just the directories:

dir /ad/s > everything .txt

If you want everything alphabetized:

dir /on/s > everything.txt

If you want everything alphabetical, but just that directory:

dir /on > everything.txt

No comments:

Post a Comment