Python批量打开文件以及获取文件名、目录及路径

时间:2024-10-21 19:34:00

1、#定义函数,用于打开指定类型文件的函数def open_allfile(path,filetype): data=[] import glob import os read_files=glob.glob(path+'*'+filetype) for i in read_files: with open(i,'rb') as infile: data.append(infile.read()) return datapath指定路径;filetype指定文件类型。

Python批量打开文件以及获取文件名、目录及路径

3、#测试path='C:\\Users\\jyjh\\Desktop\\soures\high_CG_pathogen\\'filetype='.txt'data=open_allfile(path,filetype)name=get_filename(path,filetype)name

Python批量打开文件以及获取文件名、目录及路径
© 2025 五度知识库
信息来自网络 所有数据仅供参考
有疑问请联系站长 site.kefu@gmail.com