鱼C论坛

 找回密码
 立即注册
查看: 1100|回复: 2

[已解决]030讲动动手3 文件保存问题

[复制链接]
发表于 2020-7-14 15:21:41 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
能不能帮忙看下为什么保存的文件是全部显示在一行的呀
import os 
def search_save(filelocation):
    os.chdir(filelocation)
    filename = os.listdir()
    for each_file in filename:
        if os.path.isdir(each_file):
            search_save(each_file)
            os.chdir(os.pardir)
        else:
            filetype = os.path.splitext(each_file)[-1]
            if filetype in alltype:
                filelist.append(os.getcwd() + os.sep + each_file)
          
filelocation = input('请输入待查找的初始目录:')
filelist = []
os.chdir(filelocation)
alltype = ['.mp4','.rmvb', '.avi']
search_save(filelocation)
f = open('videolist.txt','w')
f.writelines(filelist)
f.close()
最佳答案
2020-7-14 15:24:47


字符串没有换行符吧,加上 '\n' 后就好了 filelist.append(os.getcwd() + os.sep + each_file + '\n')

import os


def search_save(filelocation):
    os.chdir(filelocation)
    filename = os.listdir()
    for each_file in filename:
        if os.path.isdir(each_file):
            search_save(each_file)
            os.chdir(os.pardir)
        else:
            filetype = os.path.splitext(each_file)[-1]
            if filetype in alltype:
                filelist.append(os.getcwd() + os.sep + each_file + '\n')


filelocation = input('请输入待查找的初始目录:')
filelist = []
os.chdir(filelocation)
alltype = ['.mp4', '.rmvb', '.avi']
search_save(filelocation)
f = open('videolist.txt', 'w')
f.writelines(filelist)
f.close()
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-7-14 15:24:47 | 显示全部楼层    本楼为最佳答案   


字符串没有换行符吧,加上 '\n' 后就好了 filelist.append(os.getcwd() + os.sep + each_file + '\n')

import os


def search_save(filelocation):
    os.chdir(filelocation)
    filename = os.listdir()
    for each_file in filename:
        if os.path.isdir(each_file):
            search_save(each_file)
            os.chdir(os.pardir)
        else:
            filetype = os.path.splitext(each_file)[-1]
            if filetype in alltype:
                filelist.append(os.getcwd() + os.sep + each_file + '\n')


filelocation = input('请输入待查找的初始目录:')
filelist = []
os.chdir(filelocation)
alltype = ['.mp4', '.rmvb', '.avi']
search_save(filelocation)
f = open('videolist.txt', 'w')
f.writelines(filelist)
f.close()
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2020-7-14 15:35:00 | 显示全部楼层
Twilight6 发表于 2020-7-14 15:24
字符串没有换行符吧,加上 '\n' 后就好了 filelist.append(os.getcwd() + os.sep + each_file + '\n')
...

没仔细看答案,加了+ os.linesep
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-20 01:59

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表