python之一鍵序列化命名目前的目錄__python

來源:互聯網
上載者:User

●用法

rename_dir.bat

rename_file.py %1

●rename_file.py指令碼的實現

import os,sysimport shutil,stringgCount = 0prefix = sys.argv[1]def getList(dirname,pFunc):    global gCount    try:        ls=os.listdir(dirname)    except:        print dirname,'is access deny'    else:        for file in ls:            temp = os.path.join(dirname,file)            if(os.path.isdir(temp)):                getList(temp,pFunc)            else:                gCount = gCount + 1                pFunc(dirname,file)                def renameFile(dirname,file):    global prefix    print file    if file == "." or file == "..":        return    ext = file.split(".")[1]    newFile = "%.2d.%s" % (gCount,ext)    print file,"--------->",newFile    os.rename(os.path.join(dirname,file),os.path.join(dirname,newFile))print "renaming the following files"print "====================================================="getList(os.getcwd(),renameFile)


●指令碼功能

一鍵將當前檔案夾下的同類型檔案名稱進行命名(實現遞增式命名 01.mp4、02.mp4、03.mp4......)

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.