Python目录下文件读取方式
作者:小胖_@
这篇文章主要介绍了Python目录下文件读取方式,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教
Python目录下文件读取
不包含子目录下文件
import os def load_file_dir(): file_path_dir = "download_list_json" if not os.path.exists(file_path_dir): return file_list = [] for file_name in os.listdir(file_path_dir): # 判断是否是目录 if os.path.isdir(file_name): continue # 文件过滤 if ".temp" not in file_name: continue if "download_list" not in file_name: continue file_list.append(f"{file_path_dir}/{file_name}")
包含子目录下文件
import os def load_file_dir(): file_path_dir = "data" if not os.path.exists(file_path_dir): return file_list = [] for root, folder_names, file_names in os.walk(file_path_dir): for file_name in file_names: if ".json" not in file_name: continue new_root = root.replace("\\", "/") file_path = f"{new_root}/{file_name}" file_list.append(file_path)
Python读取文件夹下的所有文件
有时候需要处理一个文件夹下面所有的文件,一个个的将文件的名字复制粘贴到代码里太麻烦了,我们可以一次性读取文件夹里面所有的文件。
import os path = '/Users/zhangxin/Desktop/文件夹/' files = os.listdir(path) i = 0 for file in files: try: used_name = path + file ## 因为文件名里面包含了文件的后缀,所以重命名的时候要加上 new_name = path + str(i) + '.' + file.split('.')[1] except: ## 跳过一些系统隐藏文档 pass os.rename(used_name, new_name) i += 1
修改前:
修改后:
总结
以上为个人经验,希望能给大家一个参考,也希望大家多多支持脚本之家。