11 Basic Internal Commands Of DOS

1)DIR (displays the directory content page-wise).
Syntax : C:\DIR
DIR/P (displays content page-wise).
Syntax : C:\DIR/P
DIR/W (displays content width-wise).
Syntax : C:\DIR/W
DIR\ (displays all sub directories along with the files in sub directories).
Syntax : C:\DIR\
2)CLS (clears the screen).
Syntax : C:\>CLS
3)DATE (displays system date).
Syntax : C:\>DATE
4)MD or MKDIR (creates a new directory).
Syntax : C:\>MD
Syntax : C:\>MKDIR
5)CD (change the directory).
Syntax : C:\>CD..
Syntax : C:\>CD (Directory Name)
6)COPY (copy the contents of a file to another file).
Syntax : C:\>COPY (name of file1) (name of file2)
7)TYPE (display the content of a file).
Syntax : C:\>TYPE (filename)
8)EXIT (exit form DOS).
Syntax : C:\>EXIT
9)RENAME(rename a file).
Syntax : C:\>RENAME (File Name) (New Name For File)
10)RD (removes a directory).
Syntax : C:\>RD (Direcroty Name)
11)DEL (deletes a file).
Syntax : C:\>DEL (file name)