“Unix 目录是‘链接’的列表”结构”

发布于 2024-08-21 11:59:02 字数 280 浏览 4 评论 0原文

来自 http://en.wikipedia.org/wiki/Inode

Unix 目录是“链接”列表 结构体,每个结构体包含一个 文件名和一个索引节点号。

我只想获取此链接列表的长度,此时目录中文件的名称在我的代码中并不重要。

Perl 解决方案是首选,但任何解决方案都可以。

From http://en.wikipedia.org/wiki/Inode

Unix directories are lists of "link"
structures, each of which contains one
filename and one inode number.

I'd like to just get the length of this list of links, the names of the files in the directory aren't important at this point in my code.

A solution in Perl would be preferred, but any solution will do.

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

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

发布评论

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

评论(1

你爱我像她 2024-08-28 11:59:02
opendir DIR, '.';
$num_items = @{[readdir DIR]};
closedir DIR;

中心点是 readdir 在列表上下文中调用时返回所有目录条目。

opendir DIR, '.';
$num_items = @{[readdir DIR]};
closedir DIR;

The central point is that readdir returns all the directory entries when called in list context.

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