Python 遍历文件

Posted 饭桶大叔

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python 遍历文件相关的知识,希望对你有一定的参考价值。

 1 import os
 2 import re
 3 
 4 zifu = [<audio id="," url=","></audio>]
 5 count = 0
 6 rootdir = D:\LittleWorld\src\audio\common
 7 list = os.listdir(rootdir)                      #列出文件夹下所有的目录与文件
 8 for i in range(0,len(list)):
 9     path = os.path.join(rootdir,list[i])
10     if os.path.isfile(path):
11 
12         if path.find(mp3) != -1:
13             count = count + 1
14             xiabiao = path.find("audio")
15             newstr = path[xiabiao:len(path)]
16             path = zifu[0] + str(count) + zifu[1] + newstr + zifu[2]
17             print(path)
18         else:
19             # print("该文件不是MP3格式:%s"%path)
20             pass

 

以上是关于Python 遍历文件的主要内容,如果未能解决你的问题,请参考以下文章

我在哪里更改此 Python 代码片段以将临时文件保存在 tmp 文件夹中?

常用python日期日志获取内容循环的代码片段

使用 Python 代码片段编写 LaTeX 文档

Android 逆向使用 Python 解析 ELF 文件 ( Capstone 反汇编 ELF 文件中的机器码数据 | 创建反汇编解析器实例对象 | 设置汇编解析器显示细节 )(代码片段

Python遍历文件夹

python遍历特定目录的深度问题