home *** CD-ROM | disk | FTP | other *** search
/ Black Box 4 / BlackBox.cdr / ibm1 / pcwiz01.arj / CHDIR.INS < prev    next >
Text File  |  1991-09-25  |  1KB  |  40 lines

  1. CHDIR    Used for moving from one directory on a hard
  2.          disk or diskette to another. The CHDIR (Change
  3.          Directory) command is often abbreviated to CD.
  4.  
  5. Format:  CHDIR (or CD) [D:Path]
  6.  
  7. Example:       CHDIR \     -or-  CD \     -or-  CD\
  8.  
  9.    Changes the directory that you are currently working
  10.    in to the ROOT directory of the CURRENT drive. (Does
  11.    NOT change drive location.)
  12.  
  13. Example:       CHDIR \123  -or-  CD \123   -or-  CD\123
  14.  
  15.    Changes the directory that you are currently working
  16.    in to the \123 sub-directory on the CURRENT drive.
  17.  
  18. Example:       CHDIR \123\DATA    -or-   CD\123\DATA
  19.  
  20.    Changes the directory that you are currently working
  21.    in to the \123\DATA sub-directory.
  22.  
  23.  
  24. Example:       CHDIR ..      -or-      CD..
  25.  
  26.    Changes the directory that you are currently working
  27.    in to its immediate PARENT directory. (e.g., If the
  28.    CURRENT directory is D:\123\DATA, this command will
  29.    move you to the D:\123 directory. If you issued the
  30.    command again it would move you to the D:\ (root)
  31.    directory, which is the PARENT of D:\123 directory.)
  32.  
  33.  
  34. [*]  DOS does not allow you to change BOTH the drive
  35.    and the directory using a single command. To change
  36.    drives simply enter the letter designator for the
  37.    drive you want to access followed by a ":". (e.g.,
  38.    C:, D:, E:, etc and press <ENTER>.) Then issue the
  39.    appropriate CHDIR command for the CURRENT drive.
  40.