本文介绍了找出在C#中的文件所有者/创建者的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
I searched the Internet but didn't found out how to get the File Creator/OwnerIn the FileInfo Class are only other Attributes like lastAccessTime, Size, but not the Owner/Creator.
Does somebody know the answer?
解决方案
string user = System.IO.File.GetAccessControl(path).GetOwner(typeof(System.Security.Principal.NTAccount)).ToString();
这篇关于找出在C#中的文件所有者/创建者的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!