晚上打算把播放器下载下来的音乐拷贝到mp3里边,但是它是如下形式存放的,相当头痛……
作为程序员,想到使用python来遍历这个目录,并将有大于限制的音乐文件拷贝到指定目录,相关实现代码如下:
# author:liaoyu
# date :2014-05-30import os
import re
import shutil#音乐目录
dirPath = r‘C:\CloudMusic‘
#音乐存放目录
distPath = r‘D:\pyzone\红心音乐‘
if os.path.isdir(distPath) is False:
os.mkdir(distPath)
for parent,dirnames,filename in os.walk(dirPath):
for name in filename:
tempPath = os.path.join(parent,name)
#根据正则表达式判断文件是否以.mp3结尾
if re.search( ".+\.mp3",name ) is None:
continue
#只拷贝音乐文件大于2M的
if os.path.isfile(tempPath) and os.path.getsize(tempPath)/(1024*1024)>2:
shutil.copy(tempPath,distPath)
时间: 2024-10-05 19:19:55