共计 395 个字符,预计需要花费 1 分钟才能阅读完成。
递归找文件
import os | |
def get_files_recursion_from_dir(path): | |
print(f" 当前文件夹:{path}") | |
file_list = [] | |
if os.path.exists(path): | |
for f in os.listdir(path): | |
new_path = path + "/" + f | |
if os.path.isdir(new_path): | |
file_list += get_files_recursion_from_dir(new_path) | |
else: | |
file_list.append(new_path) | |
else: | |
print(f" 指定目录 {path} 不存在 ") | |
return [] | |
return file_list | |
if __name__ == "__main__": | |
print(get_files_recursion_from_dir("D:/Python/picture/eas1yocr")) |
正文完