How to Make The List of Files in a Folder

Step  1.  Open Command Prompt (in RUN box, type cmd)
Step 2. Then go to the folder you want to make the list. Here I give examples folder named "CD Programming" that is on drive "D: \".
Step  3.  Type "D: " (without the quotes, and then you hit ), and type "CD Programming "
Step  4.  Type DIR *.* / S / B> TableOfContents.txt (the command is intended to show all files in the folder that you select and include subfolders).
Or
DIR *. doc / S / B> TableOfContents.txt  (This command is for displaying only word files (. Doc)).

Have You seen the result yet? Please do some practice Youself to develop it.
 
PS:  To find commands or help, type "DIR /?".

No comments:

Post a Comment