File.SetAttributes Method
Updated: October 2010
Sets the specified FileAttributes of the file on the specified path.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- path
- Type: System.String
The path to the file.
- fileAttributes
- Type: System.IO.FileAttributes
A bitwise combination of the enumeration values.
| Exception | Condition |
|---|---|
| ArgumentException |
path is empty, contains only white spaces, contains invalid characters, or the file attribute is invalid. |
| PathTooLongException |
The specified path, file name, or both exceed the system-defined maximum length. For example, on Windows-based platforms, paths must be less than 248 characters, and file names must be less than 260 characters. |
| NotSupportedException |
path is in an invalid format. |
| DirectoryNotFoundException |
The specified path is invalid, (for example, it is on an unmapped drive). |
| FileNotFoundException |
The file cannot be found. |
| UnauthorizedAccessException |
path specified a file that is read-only. -or- This operation is not supported on the current platform. -or- path specified a directory. -or- The caller does not have the required permission. |
The path parameter is permitted to specify relative or absolute path information. Relative path information is interpreted as relative to the current working directory. To obtain the current working directory, see GetCurrentDirectory.
Certain file attributes, such as Hidden and ReadOnly, can be combined. Other attributes, such as Normal, must be used alone.
It is not possible to change the compression status of a File object using the SetAttributes method.
For a list of common I/O tasks, see Common I/O Tasks.
The following example demonstrates the GetAttributes and SetAttributes methods by applying the Archive and Hidden attributes to a file.
using System; using System.IO; using System.Text; class Test { public static void Main() { string path = @"c:\temp\MyTest.txt"; // Create the file if it exists. if (!File.Exists(path)) { File.Create(path); } FileAttributes attributes = File.GetAttributes(path); if ((attributes & FileAttributes.Hidden) == FileAttributes.Hidden) { // Show the file. attributes = RemoveAttribute(attributes, FileAttributes.Hidden); File.SetAttributes(path, attributes); Console.WriteLine("The {0} file is no longer hidden.", path); } else { // Hide the file. File.SetAttributes(path, File.GetAttributes(path) | FileAttributes.Hidden); Console.WriteLine("The {0} file is now hidden.", path); } } private static FileAttributes RemoveAttribute(FileAttributes attributes, FileAttributes attributesToRemove) { return attributes & ~attributesToRemove; } }
-
FileIOPermission
for reading and writing files. Associated enumeration: FileIOPermissionAccess.Write
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
You can use DeviceIoControl interop:
internal static class NativeMethods
{
[DllImport("kernel32.dll", CharSet = CharSet.Auto, SetLastError = true)]
public static extern int DeviceIoControl(
SafeFileHandle hDevice,
int dwIoControlCode,
ref short lpInBuffer,
int nInBufferSize,
IntPtr lpOutBuffer,
int nOutBufferSize,
ref int lpBytesReturned,
IntPtr lpOverlapped);
}
public class SomeClass {
public static void SetCompressionAttribute(string output)
{
using (FileStream outputStream = File.Create(output))
{
// Write to file
// Setting compression flag
const int SetCompressionCode = 0x9C040;
const short CompressionFormatDefault = 1;
int bytesReturned = 0;
short inputBuffer = CompressionFormatDefault;
int result = NativeMethods.DeviceIoControl(
outputStream.SafeFileHandle,
SetCompressionCode,
ref inputBuffer,
sizeof(short),
IntPtr.Zero,
0,
ref bytesReturned,
IntPtr.Zero);
if (result == 0)
{
Marshal.ThrowExceptionForHR(Marshal.GetLastWin32Error());
}
}
}
}
- 12/16/2011
- Evgeny Balykov
- 2/2/2011
- cunningdave