home *** CD-ROM | disk | FTP | other *** search
/ Collection of Education / collectionofeducationcarat1997.iso / COMPUSCI / PWP40_1.ZIP / ATTRIB.INS next >
Text File  |  1991-10-27  |  2KB  |  80 lines

  1. ATTRIB      Used to change or display the "attributes"
  2.             (R = Read/Write and A = Archive) of a file.
  3.  
  4. Format:     ATTRIB [+R:-R][+A:-A] [Path][FileSpec] [/S]
  5.  
  6.  
  7.    +R makes the FileSpec(s) attribute READ-ONLY, which
  8.       prevents the file from being changed or deleted.
  9.  
  10.    -R removes the READ-ONLY setting, allowing changes
  11.       to the file to be made and deletion of the file
  12.       to be accomplished.
  13.  
  14.    +A sets the ARCHIVE bit of the FileSpec(s) which
  15.       allows the file(s) to be included in BACKUPs.
  16.  
  17.    -A resets the ARCHIVE bit of the FileSpec(s) which
  18.       prevents the file(s) from being BACKed-UP even
  19.       when a /M switch with BACKUP and XCOPY is used.
  20.  
  21.  
  22.    /S applies the command to sub-directories.
  23.  
  24.  
  25.  
  26. Example:     ATTRIB +R C:\AUTOEXEC.BAT
  27.  
  28.    Sets the read\write attribute of the AUTOEXEC.BAT
  29.    file contained in root directory on drive C: to
  30.    READ-ONLY which prevents its accidental deletion
  31.    and precludes unauthorized changes.
  32.  
  33.  
  34. Example:     ATTRIB +R C:\DOS\*.*
  35.  
  36.    Sets the attribute of ALL files contained in the
  37.    \DOS directory on drive C: to READ-ONLY.
  38.  
  39. Example:     ATTRIB +R D:\*.BAT /S
  40.  
  41.    Sets the attribute of ALL files with a .BAT ext
  42.    in ALL directories of drive D: to READ-ONLY.
  43.  
  44. Example:     ATTRIB -R D:\*.BAT /S
  45.  
  46.    Removes the READ-ONLY setting of ALL files with
  47.    a .BAT ext in ALL directories on drive D.
  48.  
  49. Example:     ATTRIB +A C:\123\*.WK1 /S
  50.  
  51.   Sets the ARCHIVE bit of ALL files with a .WK1
  52.   ext in C:\123 directory and \123 sub-directories
  53.   which will ensure that they are INCLUDED in all
  54.   BACKUPs even when the /M switch of BACKUP is used.
  55.  
  56.  
  57. Example:     ATTRIB -A C:\AUTOEXEC.BAT
  58.  
  59.    Resets ARCHIVE bit of the AUTOEXEC.BAT file in
  60.    the root directory of drive C: which EXCLUDES it
  61.    from being backed-up during execution of BACKUP
  62.    operation when the /M switch of BACKUP is used.
  63.  
  64.  
  65. Example:     ATTRIB C:\AUTOEXEC.BAT
  66.  
  67.   Displays attribute settings for the AUTOEXEC.BAT
  68.   file contained in the root directory of drive C.
  69.  
  70. Example:     ATTRIB D:\*.BAT /S >LPT1
  71.  
  72.   Displays attribute settings for ALL files with a
  73.   *.BAT ext that are contained on the root directory
  74.   and ALL sub-directories of drive D. The >LPT1
  75.   parameter REDIRECTS the output of this command to
  76.   your printer instead of displaying it on-screen.
  77.  
  78.  
  79. [*]  Use of WILDCARDS (*) in FileSpec(s) is allowed.
  80.