Python--音频文件分类代码
生活随笔
收集整理的這篇文章主要介紹了
Python--音频文件分类代码
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
上代碼:
import os from shutil import copy2SOURCE = "c:\\source\\"DEST = "c:\\dest\\"# Iterate recursively through all files and folders under the source directory for path, dirs, files in os.walk(SOURCE):# For each directory iterate over the filesfor f in files:# Grab the first letter of the filenamestarting_letter = f[0].upper()# Construct the full path of the current source filesource_path = os.path.join(path, f)# Construct the destination path using the first letter of the# filename as the folderdest_path = os.path.join(DEST, starting_letter)# Create the destination folder if it doesn't existif not os.path.isdir(dest_path):os.makedirs(dest_path)# Copy the file to the destination path + starting_lettercopy2(source_path, dest_path)總結
以上是生活随笔為你收集整理的Python--音频文件分类代码的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: pandas包
- 下一篇: Python3--baby网的数据爬取