python遍历特定目录的深度问题
代码如下:importositems_list=[]defprint_items(cwd):cwd_abs_path=os.path.abspath(cwd)ifos.p...
代码如下:
import os
items_list=[]
def print_items(cwd):
cwd_abs_path=os.path.abspath(cwd)
if os.path.isdir(cwd_abs_path) and not len(cwd_abs_path) == 0:
items_list.append(cwd_abs_path)
for each_items in os.listdir(cwd_abs_path):
print_items(each_items)
else:
items_list.append(cwd_abs_path)
return items_list
f=print_items(os.getcwd())
print(f)
能用上面的代码遍历完某个目录吗? 展开
import os
items_list=[]
def print_items(cwd):
cwd_abs_path=os.path.abspath(cwd)
if os.path.isdir(cwd_abs_path) and not len(cwd_abs_path) == 0:
items_list.append(cwd_abs_path)
for each_items in os.listdir(cwd_abs_path):
print_items(each_items)
else:
items_list.append(cwd_abs_path)
return items_list
f=print_items(os.getcwd())
print(f)
能用上面的代码遍历完某个目录吗? 展开
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询