摆动的呆毛 发表于 2020-4-10 13:12:38

30讲作业

import os

def search_file(start_dir, target) :
    os.chdir(start_dir)
   
    for each_file in os.listdir(os.curdir) :
      ext = os.path.splitext(each_file)
      if ext in target :
            vedio_list.append(os.getcwd() + os.sep + each_file + os.linesep) # 使用os.sep是程序更标准
      if os.path.isdir(each_file) :
            search_file(each_file, target) # 递归调用
            os.chdir(os.pardir) # 递归调用后切记返回上一层目录

start_dir = input('请输入待查找的初始目录:')
program_dir = os.getcwd()

target = ['.mp4', '.avi', '.rmvb']
vedio_list = []

search_file(start_dir, target)

f = open(program_dir + os.sep + 'vedioList.txt', 'w')
f.writelines(vedio_list)
f.close()


vedio_list.append(os.getcwd() + os.sep + each_file + os.linesep)   为啥要加个os.linesep?

zltzlt 发表于 2020-4-10 13:13:22

答案是这样的吗?

摆动的呆毛 发表于 2020-4-10 13:15:29

zltzlt 发表于 2020-4-10 13:13
答案是这样的吗?

就是这样的啊

zltzlt 发表于 2020-4-10 13:18:15

摆动的呆毛 发表于 2020-4-10 13:15
就是这样的啊

因为最后要将找到的视频写入文件,所以要在每个视频文件名后加上换行符 linesep ,linesep 是当前系统使用的换行符(在 Windows 上是 '\r\n')

陈尚涵 发表于 2020-4-10 13:21:08

linesep就是各个系统用的系统使用文件的换行符,为了避免Mac和Linux与windows的换行符不匹配的问题。

心驰神往 发表于 2020-11-17 09:41:31

{:10_243:}
页: [1]
查看完整版本: 30讲作业