folder or directory contents
DOS commands are not case sensitive.. dir, Dir, DIr, DIR, dIr, dIR, diR .. all are same..
in a dos full form of dir
DIR is used to list the contents of a directory.
DIR :- DIR is used to display the contents of a drive or directory.
DIR
Go to the root directory of the drive (eg c:\), then type: dir <filename> /s For example, to search for the file fred.doc, you would type: dir fred.doc /s Adding /s to the dir makes dos search all the subfolders, so starting in the root directory makes dos search the entire disk.
Go to the root directory of the drive (eg c:\), then type: dir <filename> /s For example, to search for the file fred.doc, you would type: dir fred.doc /s Adding /s to the dir makes dos search all the subfolders, so starting in the root directory makes dos search the entire disk.
If you mean storage, you can find it with DIR
Dir WIN*.*
The DIR or directory command is located in the system32 directory of Windows. It is an executable file that gives DOS access to a user.
There is no real way to list all dos commands easily. It really depends on the operating system and directory structure. You could try the following in order, but they may be really long lists. C: CD \ DIR /S *.EXE DIR /S *.COM A better answer would need more details about exactly what you are trying to do and what version of DOS (Or windows with DOS) you are using.
#include <stdlib.h> int main() { system("dir"); return 0; }