博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
文件遍历升级版
阅读量:6830 次
发布时间:2019-06-26

本文共 957 字,大约阅读时间需要 3 分钟。

1 import os 2 import re 3  4 zifu = ['
'] 5 count = 0 6 7 def traverse(f): 8 global count 9 fs = os.listdir(f)10 for f1 in fs:11 tmp_path = os.path.join(f,f1)12 if not os.path.isdir(tmp_path):13 # print("文件:%s"%tmp_path)14 15 if tmp_path.find('mp3') != -1:16 if tmp_path.find('meta') != -1:17 pass18 else:19 count = count + 120 xiabiao = tmp_path.find("audio")21 newstr = tmp_path[xiabiao:len(tmp_path)]22 tmp_path = zifu[0] + str(count) + zifu[1] + newstr + zifu[2]23 print(tmp_path)24 else:25 pass26 27 else:28 # print("文件夹:%s"%tmp_path)29 traverse(tmp_path)30 31 path = "C:\\Users\\13917630495\\Desktop\\audio"32 traverse(path)

 

转载于:https://www.cnblogs.com/Hunter-541695/p/9573357.html

你可能感兴趣的文章