When using the File.Copy() method the file is copied to its new directory however it loses its original permissions.

Is there a way to copy a file so that it doesn't lose the permissions?

link|improve this question
2  
The file isn't inheriting the parents folders permissions is it? – ThePower Feb 6 at 16:54
If I use File.Copy() none of the permissions is applied to the new file. Using Alex's solution works. – WeaslB Feb 6 at 18:23
feedback

1 Answer

up vote 5 down vote accepted

I belive you can do something like this:

File.Copy(...)
FileInfo file1 = new FileInfo(@"c:\test.txt");
FileInfo file2 = new FileInfo(@"c:\test2.txt");
FileSecurity ac1 = file1.GetAccessControl();
ac1.SetAccessRuleProtection(true, true);
file2.SetAccessControl(ac1);
link|improve this answer
Works like a charm! Thanks! – WeaslB Feb 6 at 17:29
feedback

Your Answer

 
or
required, but never shown

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