# -*- coding:utf8 -*- #
'''#@author: magician
#@date:
#@description: file rename in correct order
'''import os
import re
#將src中的檔案批處理命名放到dst中
src_path =
"c:/2/img"
dst_path =
"c:/1/img"
srclist = os.listdir(src_path)
#獲取檔案路徑
src_num =
len(srclist)
#獲取檔案長度(個數)
dstlist = os.listdir(dst_path)
#獲取檔案路徑
dst_num =
len(dstlist)
#獲取檔案長度(個數)
#src資料夾中檔案最好要比dst中的要少,不要引起重名的情況!!!
用Python對資料夾下檔案按順序重新命名
在處理機器學習的時,需要將根據類別放入不同資料夾中,在資料夾下也想將用數字遞增重新命名一下,方便後續處理。首先,我們看一下python的重新命名函式 os.rename src,dst src 要修改的目錄名 dst 修改後的目錄名 如果dst是乙個存在的目錄,將丟擲oserror。注意 src和d...
python 檔案重新命名
獲取資料夾路徑 def get dirs dir dirlist for root,dirs,files in os.walk dir for d in dirs dirlist.os.path.join root,d return dirlist 獲取檔案的路徑 def get files dir...
檔案批量順序重新命名
2017 8 17 將不規則的檔名轉換為順序檔名,便於for迴圈處理 比如 a001.jpg,a002.jpg.a100.jpg轉換為 jpg1.全選右擊重新命名 2.此時會定位到乙個檔案的下面 3.把原來的名字都刪掉 所有的檔案按順序變成 x 檔案格式 注意 不要隱藏檔案的字尾名 否則無法刪除全部...