概述
面试题:
写个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遍历目录下所有的文件和路径所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复