FileAttributes Enumeration
Provides attributes for files and directories.
This enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values.
Namespace: System.IO
Assembly: mscorlib (in mscorlib.dll)
| Member name | Description | |
|---|---|---|
![]() | ReadOnly | The file is read-only. |
![]() | Hidden | The file is hidden, and thus is not included in an ordinary directory listing. |
![]() | System | The file is a system file. That is, the file is part of the operating system or is used exclusively by the operating system. |
![]() | Directory | The file is a directory. |
![]() | Archive | The file is a candidate for backup or removal. |
![]() | Device | Reserved for future use. |
![]() | Normal | The file is a standard file that has no special attributes. This attribute is valid only if it is used alone. |
![]() | Temporary | The file is temporary. A temporary file contains data that is needed while an application is executing but is not needed after the application is finished. File systems try to keep all the data in memory for quicker access rather than flushing the data back to mass storage. A temporary file should be deleted by the application as soon as it is no longer needed. |
![]() | SparseFile | The file is a sparse file. Sparse files are typically large files whose data consists of mostly zeros. |
![]() | ReparsePoint | The file contains a reparse point, which is a block of user-defined data associated with a file or a directory. |
![]() | Compressed | The file is compressed. |
![]() | Offline | The file is offline. The data of the file is not immediately available. |
![]() | NotContentIndexed | The file will not be indexed by the operating system's content indexing service. |
![]() | Encrypted | The file or directory is encrypted. For a file, this means that all data in the file is encrypted. For a directory, this means that encryption is the default for newly created files and directories. |
| IntegrityStream | The file or directory includes data integrity support. When this value is applied to a file, all data streams in the file have integrity support. When this value is applied to a directory, all new files and subdirectories within that directory, by default, include integrity support. | |
| NoScrubData | The file or directory is excluded from the data integrity scan. When this value is applied to a directory, by default, all new files and subdirectories within that directory are excluded from data integrity. |
You can get attributes for files and directories by calling the GetAttributes method, and you can set them by calling the SetAttributes method.
It is not possible to change the compression status of a File object by using the SetAttributes method. Instead, you must actually compress the file using either a compression tool or one of the classes in the System.IO.Compression namespace.
The following example shows how to retrieve the attributes for a file and check if the file is read-only.
using System; using System.IO; namespace ConsoleApplication { class Program { static void Main(string[] args) { FileAttributes attributes = File.GetAttributes("c:/Temp/testfile.txt"); if ((attributes & FileAttributes.ReadOnly) == FileAttributes.ReadOnly) { Console.WriteLine("read-only file"); } else { Console.WriteLine("not read-only file"); } } } }
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
