Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
可能重复: 在 C# 中获取/设置文件所有者
我在网上搜索了但没有找到如何获取文件创建者/所有者在 FileInfo 类中只有 lastAccessTime、Size 等其他属性,而不是所有者/创建者。
有人知道答案吗?
string user = System.IO.File.GetAccessControl(path).GetOwner(typeof(System.Security.Principal.NTAccount)).ToString();