如何在C中列出给定目录中的所有子目录?
有没有办法列出 C 中给定目录路径中的所有子目录?我希望能够使用 stat() 函数来完成此操作,但它仅适用于文件。
Is there a way to list all subdirectories in a given directory path in C? I was hoping I would be able to do it with the stat()
function but it only works on files.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
stat 也适用于目录。
stat works on directories too.
您需要 readdir(3)。
You want readdir(3).
正如其他人所指出的,
stat(2)
在所有类型的文件和设备上都能正常工作。它读取远端文件的符号链接;如果您需要有关符号链接本身的信息,请使用lstat(2)
。要列出单个目录中所有目录的名称(非递归),请使用
readdir(3)
系列函数的组合。要递归列出所有目录的名称,请使用
ftw(3)
或nftw(3)
函数执行“文件树遍历”(它们的名称由此而来; “n”代表“新”)。As others have noted,
stat(2)
works fine on files and devices of all types. It reads through symbolic links to the file at the far end; if you need the information about the symbolic link itself, uselstat(2)
.To list the names of all directories within a single directory (non-recursively), use a combination of the
readdir(3)
family of functions.To list the names of all directories recursively, use the
ftw(3)
ornftw(3)
functions to do a 'file tree walk' (from whence cometh their names; 'n' is for 'new').