马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
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)[1]
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()
>>> ================================ RESTART ================================
>>>
请输入待查找的初始目录:"E:\桌面\22"
Traceback (most recent call last):
File "E:\桌面\22\路径.py", line 20, in <module>
search_file(start_dir, target)
File "E:\桌面\22\路径.py", line 4, in search_file
os.chdir(start_dir)
OSError: [WinError 123] 文件名、目录名或卷标语法不正确。: '"E:\\桌面\\22"'
帮忙解答一下 这样输入的初始目录有什么问题?应该怎样写?
|