如何使用 Perl 访问文件(exe 或 dll)所有者详细信息?
我想简单地打印出目录的这些详细信息,并且我想用 perl 编写脚本,有什么见解吗?
I wanted to simply print out these details for a directory, and I wanted to write the script in perl, any insights?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
stat
获取文件所有者的 UID,使用getpwuid
获取该 ID 的用户名,例如:请注意,如果您调用
getpwuid
在列表上下文中,它将返回一个值列表,其中第一个是用户名。Use
stat
to get the UID of the file's owner andgetpwuid
to get the username for the ID, e.g.:Note that, if you call
getpwuid
in list context, it will return a list of values, the first of which is the username.