python檔案重新命名(括子資料夾裡的檔案)
# -*- coding: utf-8 -*-
# @time : 2020/5/27 13:15
# @author : 王巖
import os
def path(file_path): # file_path為資料夾路徑
for root, dirs, files in os.walk(file_path): # 獲取文件內所有檔案
for file_name in files: # 取出資料夾下各檔名
if file_name.endswith('.mp4'): # 選出要修改的檔案型別;
new_name = 'sl'+'.mp4' # 寫出想要修改的樣式
os.rename(os.path.join(root, file_name), os.path.join(root,new_name)) # 此處是重新命名自己想要的樣式
path(input(r'請輸入路徑:'))
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...
Python遍歷檔案,重新命名
import os.path rootdir input enter your input i 0 for parent,dirnames,filenames in os.walk rootdir for filename in filenames print parent is parent pr...
python實現檔案重新命名
encoding utf 8 importos path demo1 filelist os.listdir path 該資料夾下所有的檔案 包括資料夾 count 0 forfileinfilelist print file forfileinfilelist 遍歷所有檔案 olddir os.p...