“Unix 目录是‘链接’的列表”结构”
来自 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
中心点是
readdir
在列表上下文中调用时返回所有目录条目。The central point is that
readdir
returns all the directory entries when called in list context.