dir directory
By specifying a directory, the contents of that directory is displayed. For example, dir \mystuff will display the contents of the \mystuff directory. Note: If directory contains a space, then type quotation marks around the directory name; for example, dir "c:\program files"
dir *.txt
Displays a listing of all the .txt files located in the current (or specified) directory.
dir my*
Displays a listing of all files that start with the pattern you specify; in this example, "my".
There are a few options you can use with the dir command. For the complet list of options, type dir /? or help dir
Position of options: If you specify a directory as part of the command, options can be specified before or after directory
Multipel options: You can type more then one option at the same time. For example, dir /p/w \mystuff would display a wide listing of the \mystuff directory and pause after each screenful.
The following examples demonstrate some of the more useful options:
dir /p
Pause the directory listing after every screenful. To continue the listing, press any key (e.g.: spacebar or Enter key).
dir /o:gne
Displays a directory listing that is sorted. You specify the sort order by one or more letter after the /o: part. The most useful sort order is gne which puts all the subdirectories before files (g), and sorts by name (n), and then by filename ending (e). Tip: You can set the sort order (lasts until you close the DOS window) by typing a set command: set dircmd=/o:gne
dir /o:s
Displays a directory listing that is sorted by size (smallest to largest). To reverse the sort order (largest size to smallest size), prefix the sort order with a - (minus sign): dir /o:-s
dir /o:d
Displays a directory listing that is sorted by date/time (oldest to newest; oldest at top, newest at bottom). To reverse the sort order (newest to oldest; newest at top, oldest at bottom), prefix the sort order with a - (minus sign): dir /o:-d
dir /s
Displays the contents of the current directory (or specified directory) as well as the contents of all subdirectories and their subdirectories too. Since the output can be very long, especially if you have subdirectories inside subdirectories, you probably should also use the /p option to pause output. If you forget to do that, you'll probably see the output zipping by on your screen; in that case, press Ctrl-C to stop the command. Or you might want
to save the output to a text file, for example: dir /s > myfiles.txt will output a list of all files contained in the current directory and all subdirectories to the file myfiles.txt
dir /s *.txt
Displays a listing of all .txt files located in the current directory and in all subdirectories.
dir /s mystuff.txt
Displays a listing of all instances of a file named mystuff.txt located in the current directory and in all subdirectories. Useful when you know the name of a file but don't recall which subdirectory it is located in. You can think of this command as the equivalent of the Windows Search Companion (accessible by pressing F3 when viewing a Windows folder).
dir /w
Wide directory listing.
dir /b
Displays a directory listing showing just the filenames without header information or file size/date. This bare format is useful when you just want the actual filenames and you're going to do some sort of further processing. For example dir /b \mystuff > files.txt would create a file named files.txt that contains just the filenames of files located in the \mystuff
directory.
dir /ah
Displays a listing of hidden files (if any) that are located in the directory. Tip: Use the attrib command to change the hidden attribute of a file.