How can I programatically remove the readonly attribute from a directory in C#?
var di = new DirectoryInfo("SomeFolder"); di.Attributes &= ~FileAttributes.ReadOnly;
1.4m articles
1.4m replys
5 comments
57.0k users