如何使用 Perl 访问文件(exe 或 dll)所有者详细信息?

发布于 2024-11-07 13:13:03 字数 48 浏览 0 评论 0原文

我想简单地打印出目录的这些详细信息,并且我想用 perl 编写脚本,有什么见解吗?

I wanted to simply print out these details for a directory, and I wanted to write the script in perl, any insights?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

甜尕妞 2024-11-14 13:13:03

使用 stat 获取文件所有者的 UID,使用 getpwuid 获取该 ID 的用户名,例如:

my $owner = getpwuid((stat)[4]);

请注意,如果您调用 getpwuid在列表上下文中,它将返回一个值列表,其中第一个是用户名。

Use stat to get the UID of the file's owner and getpwuid to get the username for the ID, e.g.:

my $owner = getpwuid((stat)[4]);

Note that, if you call getpwuid in list context, it will return a list of values, the first of which is the username.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文