home *** CD-ROM | disk | FTP | other *** search
- ----------------------- CHDIR - Internal DOS Command -------------------------
-
- CHDIR changes the current directory or displays the current directory path.
-
- FORMAT: CHDIR [d:][path] or CD [d:][path]
-
- REMARKS:
-
- d: - the drive letter. If omitted the default drive is assumed.
- path - the directory path of the directory to be made current. If a path is
- not specified, the current path will be displayed.
-
- DOS looks in the current directory to find files specified in a command if
- the directory path is not specified in the command.
-
- EXAMPLES:
-
- Change the current directory on the default drive to the root directory:
-
- CHDIR \
-
-
- Change the current directory on the B drive to the BUDGET directory. BUDGET is
- a subdirectory of the root directory:
-
- CHDIR B:\BUDGET
-
-
- Change the current directory on the default drive to the DATA directory. DATA
- is a subdirectory of the BUDGET directory. BUDGET is a subdirectory of the root
- directory.
-
- CD \BUDGET\DATA
-
- If the current directory path is \BUDGET and you want to make DATA,
- which is a subdirectory of BUDGET, the current directory, you need
- specify only the DATA subdirectory:
-
- CD DATA