Unix 文件系统查找
如何获取根目录中所有文件和文件夹的列表,包括子文件夹及其文件。
How to get the list of all the files and folders in the root dir including sub-folders and their files.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
或者这个:找到/
or this: find /
如果您想以编程方式执行此操作,我建议 readdir() 和 < a href="http://opengroup.org/onlinepubs/007908775/xsh/opendir.html" rel="nofollow noreferrer">opendir()。
If you want to do it programmatically I'd recommend readdir() and opendir().
试试这个(经过 Ewan 的修改):
Try this (with Ewan's modification):
不过,严肃地说,
这应该会显示根目录、/ 中的文件夹以及这些文件夹的内容。如果想要子目录的子目录,请使用-maxdepth 3,以此类推。
In all seriousness though,
That should show you the root directory, folders in /, and the contents of those folders. If you want the subdirectories of the subdirectories, use -maxdepth 3, and so on.
使用 find 命令,例如
或者如果您安装了树
use find command eg
or if you have tree installed