piątek, 31 stycznia 2014

C# Remove file attribute


// remove ReadOnly attribute
FileAttributes attributes = File.GetAttributes(fullFilePath);
if ((attributes & FileAttributes.ReadOnly) == FileAttributes.ReadOnly)
{
    attributes = attributes & ~FileAttributes.ReadOnly;
    File.SetAttributes(fullFilePath, attributes);
}

 
FileAttributes Enumeration


Brak komentarzy:

Prześlij komentarz