文件写入
import ospath = input('请输入带查找的初始路径')
file = os.listdir(path)
save_file_path = []
for each_file in file:
file_name,suffix = os.path.splitext(each_file)
if suffix == '.mp4' or suffix == '.rmvb' or suffix == '.avi':
print('%s%s'%(path,each_file))
save_file_path.extend()
save = open('D:\\视频文件\\save_mp3.txt','a')
save.writelines(save_file_path)
以上在写入路径的时候,第二次写入会在末尾追加,我希望能换行写入
https://xxx.ilovefishc.com/album/202009/25/220854n0nunx0n31o3v5uc.png 本帖最后由 sunrise085 于 2020-9-25 22:45 编辑
save_file_path.extend()这一行决定你写入文件的内容有没有换行,而且你的路径和文件名之间好像也没有任何间隔吧
改为下面这样:
save_file_path.extend()这样写的话,每一行是一个文件,包含路径和文件名,例如:D:\\测试文件\\12fd3543ss.mp4
页:
[1]