home *** CD-ROM | disk | FTP | other *** search
/ BUG 1 / BUGCD1996_0708.ISO / pc / aplic / bioritam / a next >
Text File  |  1996-06-11  |  2KB  |  37 lines

  1. Copies files and directory trees.
  2.  
  3. XCOPY source [destination] [/A | /M] [/D[:date]] [/P] [/S [/E]] [/W]
  4.                           [/C] [/I] [/Q] [/F] [/L] [/H] [/R] [/T] [/U]
  5.                           [/K] [/N]
  6.  
  7.  source       Specifies the file(s) to copy.
  8.  destination  Specifies the location and/or name of new files.
  9.  /A           Copies files with the archive attribute set,
  10.               doesn't change the attribute.
  11.  /M           Copies files with the archive attribute set,
  12.               turns off the archive attribute.
  13.  /D:date      Copies files changed on or after the specified date.
  14.               If no date is given, copies only those files whose
  15.               source time is newer than the destination time.
  16.  /P           Prompts you before creating each destination file.
  17.  /S           Copies directories and subdirectories except empty ones.
  18.  /E           Copies directories and subdirectories, including empty ones.
  19.               Same as /S /E. May be used to modify /T.
  20.  /W           Prompts you to press a key before copying.
  21.  /C           Continues copying even if errors occur.
  22.  /I           If destination does not exist and copying more than one file,
  23.               assumes that destination must be a directory.
  24.  /Q           Does not display file names while copying.
  25.  /F           Displays full source and destination file names while copying.
  26.  /L           Displays files that would be copied.
  27.  /H           Copies hidden and system files also.
  28.  /R           Overwrites read-only files.
  29.  /T           Creates directory structure, but does not copy files. Does not
  30.               include empty directories or subdirectories. /T /E includes
  31.               empty directories and subdirectories.
  32.  /U           Updates the files that already exist in destination.
  33.  /K           Copies attributes. Normal Xcopy will reset read-only attributes.
  34.  /Y           Overwrites existing files without prompting.
  35.  /-Y          Prompts you before overwriting existing files.
  36.  /N           Copy using the generated short names.
  37.