我有文件“screenshot”/ JPEG ,我很好奇默认情况下哪些信息可以存储在图片中,该图片被截图,如果是,如何通过 C#
答案 0 :(得分:1)
考虑使用System.IOFileInfo
类:
https://msdn.microsoft.com/en-us/library/system.io.fileinfo_properties(v=vs.110).aspx
该课程将为您提供有关该文件的更多信息。
e.g。
System.IO.FileInfo info = new FileInfo("Path to file");
此对象将为您提供有关您指向的文件的一些有用信息。
答案 1 :(得分:0)
var User= System.IO.File.GetAccessControl(FilePath).GetOwner(typeof(System.Security.Principal.NTAccount)).ToString();
答案 2 :(得分:0)
var user = System.IO.File.GetAccessControl(path).GetOwner(typeof(System.Security.Principal.NTAccount)).ToString();