vote up 2 vote down star

How do I change the Read-only file attribute for each file in a folder using c#?

Thanks

flag

3 Answers

vote up 6 vote down
foreach (string fileName in System.IO.Directory.GetFiles(path))
{
    System.IO.FileInfo fileInfo = new System.IO.FileInfo(fileName);

    fileInfo.Attributes |= System.IO.FileAttributes.ReadOnly;
    // or
    fileInfo.IsReadOnly = true;
}
link|flag
vote up 2 vote down

You can try this : iterate on each file and subdirectory :

public void Recurse(DirectoryInfo directory)
{
    foreach (FileInfo fi in directory.GetFiles())
    {
        fi.IsReadOnly = false; // or true
    }

    foreach (DirectoryInfo subdir in directory.GetDirectories())
    {
        Recurse(subdir);
    }
}
link|flag
vote up 1 vote down

Use File.SetAttributes in a loop iterating over Directory.GetFiles

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.