遍历目录树的方式有哪几种?
如何用您最喜欢的语言遍历目录树?
要在不同操作系统中遍历目录树,您需要了解什么? 在不同的文件系统上?
您最喜欢的帮助遍历目录树的库/模块是什么?
How do you traverse a directory tree in your favorite language?
What do you need to know to traverse a directory tree in different operating systems? On different filesystems?
What's your favorite library/module for aiding in traversing a directory tree?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(7)
在 Python 中:
如果您正在寻找快速、干净且可移植的解决方案,请尝试:
请注意,您可以修改 foo 来执行其他操作,而不仅仅是打印名称。 此外,如果您有兴趣迁移到 Python 3.0,则必须使用 os.walk()。
In Python:
If you're looking for a quick, clean, and portable solution try:
Note that you can modify foo to do something else instead of just printing the names. Furthermore, if you're interested in migrating to Python 3.0, you will have to use os.walk() instead.
在Java中:
递归在这里很有用。 以下是一段已在互联网上流传多年的 Java 代码片段。 不确定谁应该为此功劳。
In Java:
Recursion is useful here. Following is a Java code snippet that's been all over the Internet for ages. Not sure who deserves the credit for it.
bash:(
改编自http://ubuntuforums.org/showthread.php?t=886272 评论 #4)
bash:
(adapted from http://ubuntuforums.org/showthread.php?t=886272 Comment #4)
在C#中:
In C#:
嗯,C# 带有一定程度的递归......
mmmm, C# with a dose of recursion.....
C++
C++
在带有 GNU 工具的 Linux 上
或
On Linux with GNU tools
or