Operating System - Some Fundamental DOS Commands, Rules For Naming Files in DOS and Types of Files
Operating System - Some Fundamental DOS Commands, Rules For Naming Files in DOS and Types of Files
Operating System - Some Fundamental DOS Commands, Rules For Naming Files in DOS and Types of Files
Windows
LINUX
Mac
UNIX
In the 1980s or early 1990s, the operating system that shipped with most PCs was a
version of the Disk Operating System (DOS) created by Microsoft: MS-DOS.
Or Click Start Button Choose Run Type cmd in the Open tab as shown below:
The DOS commands can be entered in the command prompt and executed.
1. DIR
Lists all files and directories in the directory that you are currently in.
2. dir /w
If information on the date / time and other information on the files are not
needed, then this command can be used to list just the files and directories going
horizontally, taking as little as space needed.
3. dir /on
List the files in alphabetical order by the names of the files.
4. dir /o-n
List the files in reverse alphabetical order by the names of the files.
FORMAT Command
FORMAT command is used to erase all information of a diskette or fixed drive.
1. format a:
Would erase all the contents off a disk. Commonly used on a diskette that has not been
formatted or on a diskette you wish to erase.
2. format a: /q
Quickly erases all the contents of a floppy diskette. Commonly used to quickly erase all
information on the diskette.
3. format c:
This would erase all the contents of C: hard disk drive. In other words, unless you wish
to erase all your computer's information, this command should not be done unless you're
planning to start over.
COPY Command
COPY command allows to copy one or more files to an alternate location.
Examples:
1. copy *.* a:
Copy all files in the current directory to the a disk drive.
2. copy file1.txt file2.txt
Copy the contents of file1.txt to file2.txt
3. copy myfile1.txt+myfile2.txt
Copy the contents in myfile2.txt and combines it with the contents in myfile1.txt.
PATH Command
Path is used to specify the location where MS-DOS looks when using a command. For example,
when using the command "format", if the path is not specified to where the command is you will
receive bad command or file name.
Example:
LABEL Command
Label is used to view or change the label of the computer disk drives.
Example:
label a: mydisk
This would label the disk currently in the drive to "mydisk", but will not label if your disk is
write protected.
VOL Command
VOL command displays the volume information about the designated drive.
2. cd..
Goes back one directory.
3. cd
Typing cd alone will print the working directory.
DEL Command
DEL command is used to delete files from the computer. Deleting files from MS-DOS does not
send files to the recycle bin.
Examples:
1. del test.tmp
Deletes the test.tmp in the directory that you currently are in, if the file exists.
2. del c:\windows\test.tmp
Delete the c:\windows\test.tmp in the windows directory if it exists.
.bas
A basic computer-language program file.
.bat
This is used for a batch file. Such a file is a series of commands in mostly plain english
which perform an operation in DOS automatically. They come with some programs and
may also be written by a user to make shortcuts or perform operations like sorting or
backups.
.bin
A binary file.
.c
A file of programming language in the C format.
.dat
Used to hold information about a particular aspect of a program or about a particular
operation. The latter may update a .dat file to reflect recent changes. Other operations in
the program may then view this file and other .dat files while determining a course of
action.
.db or .dbf
These are used by data base programs to hold the users' data information. Other
programs may use them to hold information used by the application itself for such things
as printer specifications regarding printer selection by the user.
.dir
Used to house a directory list, especially for communications programs.
.exe
An executable file.
References
1. http://www.chebucto.ns.ca/~ak621/DOS/DOS-Ext.html
2. http://www.computerhope.com/msdos.htm