python遍历整个文件夹中的所有.txt文件并将绝对路径保存在指定的txt文档中

        在深度学习处理数据时经常会用到的一步操作,路径名因人而异,可以根据需求自行更改。

import os
# get .txt document
rootdir=os.path.join('要读取的txt文件的绝对路径')
# read
write_path=open('要写入的txt文件的绝对路径/write.txt','w')
for (dirpath,dirnames,filenames) in os.walk(rootdir):
    for filename in filenames:
        if os.path.splitext(filename)[1]=='.txt':
            write_path.write('要写的绝对路径'+filename+'\n')
write_path.close()

 

你可能感兴趣的:(python)