Answers for "c# get file author"

C#
0

c# get file author

File.GetAccessControl(path).GetOwner(typeof(System.Security.Principal.NTAccount))
// or 
File.GetAccessControl(path).GetGroup(typeof(System.Security.Principal.NTAccount)).Value
Posted by: Guest on October-12-2020

C# Answers by Framework

Browse Popular Code Answers by Language