I'd like to know how to get the file author using C#, Not the file owner but the file Author, because when searching I find just how to get the file owner.
I already try this:
string user = System.IO.File.GetAccessControl(file).GetOwner(typeof(System.Security.Principal.NTAccount)).ToString();
But this get the file owner.