Skip to main content

Filenames

It is important to understand DOS file naming conventions and their use. Here, filenames and some special filename "tools" called wild cards and literals are described.

What is a File name?   Every program and data file is given a name to differentiate it from other programs and data files. A program is one or more computer instructions collected into a file. A data file is normally a collection of characters (or data) that make up a document, like a letter, or a database, like a collection of accounting transactions or customer records.

Descriptive filenames are normally used. For example, if you create and save a letter to Mom, you might give it the filename MOM.LTR. A letter to Dad could be called DAD.LTR. A word processing program file might have the filename WP.COM. Examine these filenames a little closer.

First, notice that each filename is meaningful. This is important if you want to know what is in a file by looking at its name. Obscure filenames are of little use when viewing a disk directory (or filename list).

Also notice that the filenames have two parts separated by a period. In our filename examples, the first part was used to differentiate Mom's letter from Dad's. The second part of the filename, called an extension, specifies the file type. These files are letters, so for convenience the extension LTR was assigned. When looking at a list of filenames, you can tell which ones are letters by looking at extensions; you can tell who the letters are to by reading the first part of the filenames.

The extension COM designates a command file type. Command files and files having the extension EXE are executable program files. You can run files having the extension COM or EXE by typing the first part of the filename. For example, in the WP.COM example, typing WP and pressing Enter causes the WP program to run. It is not necessary to type the filename extension. If you have program files having extension like OVR, WKS, DBF, HLP, or PRN, use some other extension to avoid possible confusion. \

Filenames Rules: There are a few simple rules associated with filenames. These are

1. Filenames are one to eight characters in length with an optional one-to three-character extension.

2. Filenames can include any of the following characters.
    A-Z (or a-z)
    0-9
    $ & # @ ! %' '( ) { } _ / \
    Other characters are not allowed, such as : , ; | +, as they have special meanings.

3. Reserved device names, listed and described in Table 1-4 of section 1, are not allowed.

4. A period is used to separate the first part of a filename from the extension.

5. When a filename includes an extension, include the extension when used in conjunction with a DOS command (like COPY, TYPE, or ERASE).

Comments

Popular posts from this blog

MEM

MEM The MEM command was introduced in DOS version 4.01 and memory information. The MEM command is entered alone or with a modified slightly in MS-DOS 5.00. MEM is used to display system memory information. The MEM command is entered alone or with a parameter. MEM-Displays to all system memory values, including expanded and extended memory values. MEM PROGRAM--Displays programs presently loaded in memory with used and unused memory. You may use /P if you are using DOS 5.00 MEM/DEBUG--Dispiays a list of programs, device drivers, install drivers, and used unused memory. You may use / if you are using DOS 5.00. MEM CLASSIFY (or MEM /C)-Displays programs and cor-responding memory usage. The largest available memory block is also displayed. You may use /C if you are using DOS 5.00. Typing MEM and pressing Enter displays information similar to the following (typical of DOS 5.00): C:\>MEM                  ...

DOS CONFIGURATION AND AUTOMATIC EXECUTION FILES

The CONFIG.SYS and AUTOEXEC.BAT files can be used to set the way your computer responds to commands. The purpose of each of these files is briefly described. Although these files are not always essential to the proper operation of your computer, there are certain programs that depend on their presence. At this point in your exploration of DOS, you are not expected to make use of these commands. However, it is important to know what they are and how they can be used. When you finish this blog, you may wish to experiment with the effect of these files on the way your computer interacts with certain programs, its operating speed, and the allocation of memory. CONFIG.SYS When your computer is turned on, DOS  checks for a CONFIG.SYS file and adjusts your computor's configuration according to commands contained in that file. The CONFIG.SYS file is always found on the main directory of the DOS book disk. If you have a hard disk system, it is found on drive C, although you can boot from ...