I am trying to determine the user who created a particular file like so:

string path = "C:\\TheFile.dat";
string user = System.IO.File.GetAccessControl(path).GetOwner(typeof(System.Security.Principal.NTAccount)).ToString();

When the file was created by a user who was not a member of the Administrators user group, the user's username was returned. However, when the file was created by someone who was a member of the Administrators user group, "Domain\Administrators" was returned.

Can anyone think why this might happen and how I can ensure that an actual user name is returned?

Thanks.

link|improve this question

See this question how to list the members of a group returned – abatishchev May 16 '11 at 11:01
feedback

1 Answer

up vote 5 down vote accepted

That is the default behavior of operating system itself. Just created a new file and follow: 'right click > security tab > advanced > owner' and you'll see that if you're the administrator, there will be two entries in the owner tab. First one 'Administrators' second one the user that created the file. If this is the client's computer, this will always be the default behavior. The reason is: If a user is an administrator, then the files they created are considered to be owned by the whole administrators group, not the individual user.

link|improve this answer
So is there a way to do something like: if(more than one entry){return the last entry}? – RikSaunderson May 16 '11 at 11:12
1  
Not with .NET alone. You will have to P/Invoke but that will be a bit complicated. This should help you: emmet-gray.com/Articles/GetOwner.htm – Teoman Soygul May 16 '11 at 11:19
feedback

Your Answer

 
or
required, but never shown

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