鱼C论坛

 找回密码
 立即注册
查看: 1610|回复: 4

[已解决]30讲,查找文件中视频格式的文件,问题

[复制链接]
发表于 2020-12-22 15:10:38 | 显示全部楼层 |阅读模式

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

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

x
print('===视频查询程序===')
import os

def finvid(pth):
    os.chdir(pth)
    str1 = ''

    for each_file in os.listdir(os.curdir):
        name,ext = os.path.splitext(each_file)
        if ext == '.mp4' or '.rmvb' or '.avi':
            str1 += (os.getcwd() + os.sep + each_file + '\n\n')
        if os.path.isdir(each_file):
            finvid(each_file)
            os.chdir(os.pardir)
    a = open('D:\\vedioList.txt','w',encoding='utf-8')
    a.write(str1)
    a.close()


pth = input('请输入待查找的初始目录:')
finvid(pth)

如代码,运行后txt文件中写进去的是文件夹中的每个文件的路径,并没有查找视频文件
最佳答案
2020-12-22 15:22:08
print('===视频查询程序===')
import os

def finvid(pth):
    os.chdir(pth)
    str1 = ''

    for each_file in os.listdir(os.curdir):
        name,ext = os.path.splitext(each_file)
        if ext == '.mp4' or ext == '.rmvb' or ext == '.avi':
            str1 += (os.getcwd() + os.sep + each_file + '\n\n')
        if os.path.isdir(each_file):
            finvid(each_file)
            os.chdir(os.pardir)
    a = open('D:\\vedioList.txt','w',encoding='utf-8')
    a.write(str1)
    a.close()


pth = input('请输入待查找的初始目录:')
finvid(pth)
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-12-22 15:22:08 | 显示全部楼层    本楼为最佳答案   
print('===视频查询程序===')
import os

def finvid(pth):
    os.chdir(pth)
    str1 = ''

    for each_file in os.listdir(os.curdir):
        name,ext = os.path.splitext(each_file)
        if ext == '.mp4' or ext == '.rmvb' or ext == '.avi':
            str1 += (os.getcwd() + os.sep + each_file + '\n\n')
        if os.path.isdir(each_file):
            finvid(each_file)
            os.chdir(os.pardir)
    a = open('D:\\vedioList.txt','w',encoding='utf-8')
    a.write(str1)
    a.close()


pth = input('请输入待查找的初始目录:')
finvid(pth)
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2020-12-22 17:07:27 | 显示全部楼层

再问一句,为何这样不行,只找到MP4
if  ext == ('.mp4' or '.rmvb' or '.avi'):
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-12-22 17:20:26 | 显示全部楼层
Arcticfoxer 发表于 2020-12-22 17:07
再问一句,为何这样不行,只找到MP4
if  ext == ('.mp4' or '.rmvb' or '.avi'):

可以改成
if ext in ('.mp4' , '.rmvb' , '.avi'):
==是判断是否相等,左边是字符串,右边是元组,肯定不相等
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2020-12-22 17:26:54 | 显示全部楼层
逃兵 发表于 2020-12-22 17:20
可以改成

==是判断是否相等,左边是字符串,右边是元组,肯定不相等

哦哦,感觉自己瓦特了
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

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

本版积分规则

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

GMT+8, 2025-1-17 01:16

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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