is there a way that i can remove the property \"read only\"?
i tried this:
var di = new DirectoryInfo(\"C:\\\\Work\"); di.Attributes &
This is what I found with a google search.
File.SetAttributes(filePath, File.GetAttributes(filePath) & ~(FileAttributes.ReadOnly));
Obviously this is for only one file so you will have to loop over the files and set the attributes for each.