Fixed: Only clear readonly flag when file has readonly flag

pull/2/head
Mark McDowall 10 years ago
parent 4752ba3341
commit b47fa831ae

@ -401,8 +401,13 @@ namespace NzbDrone.Common.Disk
{ {
if (File.Exists(path)) if (File.Exists(path))
{ {
var newAttributes = File.GetAttributes(path) & ~(FileAttributes.ReadOnly); var attributes = File.GetAttributes(path);
File.SetAttributes(path, newAttributes);
if (attributes.HasFlag(FileAttributes.ReadOnly))
{
var newAttributes = attributes & ~(FileAttributes.ReadOnly);
File.SetAttributes(path, newAttributes);
}
} }
} }

Loading…
Cancel
Save