home *** CD-ROM | disk | FTP | other *** search
/ Explore the World of Soft…ids, Adults, Educational / RocelcoInc-ExploreTheWorldOfSoftware-KidsAdultsEducational-Vol2-Shareware.iso / educate / disk067 / chdir.hlp < prev    next >
Encoding:
Text File  |  1985-09-10  |  1.2 KB  |  40 lines

  1. -----------------------  CHDIR - Internal DOS Command  -------------------------
  2.  
  3. CHDIR changes the current directory or displays the current directory path.
  4.  
  5. FORMAT:   CHDIR [d:][path]      or      CD [d:][path]
  6.  
  7. REMARKS:
  8.  
  9.    d:   - the drive letter.  If omitted the default drive is assumed.
  10.    path - the directory path of the directory to be made current.  If a path is
  11.           not specified, the current path will be displayed.
  12.  
  13.    DOS looks in the current directory to find files specified in a command if
  14.    the directory path is not specified in the command.
  15.  
  16. EXAMPLES:
  17.  
  18. Change the current directory on the default drive to the root directory:
  19.  
  20.           CHDIR \
  21.  
  22.  
  23. Change the current directory on the B drive to the BUDGET directory.  BUDGET is
  24. a subdirectory of the root directory:
  25.  
  26.           CHDIR B:\BUDGET
  27.  
  28.  
  29. Change the current directory on the default drive to the DATA directory.  DATA
  30. is a subdirectory of the BUDGET directory.  BUDGET is a subdirectory of the root
  31. directory.
  32.  
  33.           CD \BUDGET\DATA
  34.  
  35.    If the current directory path is \BUDGET and you want to make DATA,
  36.    which is a subdirectory of BUDGET, the current directory, you need
  37.    specify only the DATA subdirectory:
  38.  
  39.           CD DATA
  40.