我是靠谱客的博主 文静手套,最近开发中收集的这篇文章主要介绍多测师面试题:tree方法 _python遍历目录下所有的文件和路径,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

面试题:
写个tree 方法(语言不限 shell也行) ,将指定目录下的所有文件列出来,主要的遍历逻辑需要自己实现,不能用系统库函数。
eg:
$tree .
.
└── system
├── node_identifier
├── raftLog
│ └── 0
│ ├── 0-9223372036854775807-201-data
│ ├── 0-9223372036854775807-201-idx
│ ├── logMeta
│ └── upgrade
│ └── Version-200
├── roles
├── schema
│ ├── mlog.txt
│ └── tlog.txt
├── storage_groups
├── upgrade
│ └── upgrade.txt
└── users
└── root.profile

方法(1):python
import os
def tree(file_path, x):
lst = os.listdir(file_path)
for file in lst:
print("│ " * x + “├── {}”.format(file))
path = os.path.join(file_path, file)
if os.path.isdir(path):
tree(path, x + 1)

tree(“D:bao”, 0)
在这里插入图片描述

方法二:
import os
def tree(filepath,tr):
files = os.listdir(filepath)
tr+=’|-’
for i in files:
path = os.path.join(filepath,i)
# print(path)
if os.path.isdir(path):
print(tr + i)
tree(path,tr)
else:
print(tr + i)
tree(“D:bao”,’’)

在这里插入图片描述
在这里插入图片描述

最后

以上就是文静手套为你收集整理的多测师面试题:tree方法 _python遍历目录下所有的文件和路径的全部内容,希望文章能够帮你解决多测师面试题:tree方法 _python遍历目录下所有的文件和路径所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(46)

评论列表共有 0 条评论

立即
投稿
返回
顶部