Attrib - Attributes: How To Use
Attrib - Attributes: How To Use
Changes file attributes for a single file or directory. This command sets or removes the read-only, system, hidden, and compressed attributes assigned to files or directories.
The attrib command with the parameters listed below is only available when you are using the Recovery Console. The attrib command with different parameters is available from the command prompt.
attrib [+r|-r] [+s|-s] [+h|-h] [+c|-c] [[drive:][path] filename]
• Parameters
+r
Sets the read-only file attribute.
-r
Clears the read-only file attribute.
+s
Sets the system file attribute.
-s
Clears the system file attribute.
+h
Sets the hidden file attribute.
-h
Clears the hidden file attribute.
+c
Sets the compressed file attribute.
-c
Clears the compressed file attribute.
[[drive:][path] filename]
Specifies the location and name of the directory or file you want to process. You can change attributes for only one file or directory at a time.
You can change multiple attributes for a particular file or directory with a single command.
------------------
Attrib #2
Displays, sets, or removes the read-only, archive, system, and hidden attributes assigned to files or directories. Used without parameters, attrib displays attributes of all files in the current directory.
Syntax
attrib [{+r|-r}] [{+a|-a}] [{+s|-s}] [{+h|-h}] [[Drive:][Path] FileName] [/s[/d]]
• Parameters
+r
Sets the read-only file attribute.
-r
Clears the read-only file attribute.
+a
Sets the archive file attribute.
-a
Clears the archive file attribute.
+s
Sets the system file attribute.
-s
Clears the system file attribute.
+h
Sets the hidden file attribute.
-h
Clears the hidden file attribute.
[Drive:][Path] FileName
• Specifies the location and name of the directory, file, or set of files for which you want to display or change attributes. You can use wildcard characters (that is, ? and *) in the FileName parameter to display or change the attributes for a group of files.
/s
Applies attrib and any command-line options to matching files in the current directory and all of its subdirectories.
/d
Applies attrib and any command-line options to directories.
/?
Displays help at the command prompt.
• Working with groups of files
You can use wildcard characters (that is, ? and *) with the FileName parameter to display or change the attributes for a group of files. If a file has the system or hidden attribute set, you must clear these attributes before you can change any other attributes for that file.
• Using the archive attribute
The archive attribute (that is, +a) marks files that have changed since the last time they were backed up. The xcopy command uses archive attributes. For more information about archive attributes and xcopy
The attrib command, with different parameters, is available from the Recovery Console.
• Examples
To display the attributes of a file named News86 located on the current drive, type:
attrib news86
To assign the read-only attribute to the file named Report.txt, type:
attrib +r report.txt
To remove the read-only attribute from files in the \Public\Jones directory on a disk in drive B and from files in any subdirectories of \Public\Jones, type:
attrib -r b:\public\jones\*.* /s
Consider a scenario where you want to give an associate a disk containing all files in the default directory on a disk in drive A, except files with the .bak extension. Because you can use xcopy to copy only those files marked with the archive attribute, you need to set the archive attribute for those files you want to copy. First, you need to set the archive attribute for all files on drive A. Second, you need to clear the archive attribute for those files with the .bak extension. For example, type:
attrib +a a:*.* attrib -a a:*.bak
Next, use xcopy to copy the files from the disk in drive A to the disk in drive B. The /a command-line option in the following command causes xcopy to copy only those files marked with the archive attribute. For example, type:
xcopy a: b: /a
If you want xcopy to clear each file's archive attribute after it copies the files, use the /m command-line option instead of /a. For example, type:
xcopy a: b: /m
Back To The Top
Bud's CDs FREE MP3s Alphabetical Index Of Everything In This Site