[Script]採用Python建立當前日期檔案夾

來源:互聯網
上載者:User
在TotalCmd軟體中,調用如下 python 指令碼,可在當前檔案夾下建立形如"YYYY_MM_DD"的目錄。# -*- coding: utf-8 -*-
#yankchina@gmail.com
#MakeDateFolder.py
#在輸入路徑處建立一個以當前日期命名的檔案夾
def GetDateString():
    from datetime import date
    todayStr = date.today().strftime("%Y_%m_%d")
    return todayStr

def MakeDateFolder( inFolderName ):
    import os
    if os.path.isdir( inFolderName ):
        newFolderName = inFolderName + '\\\\' + GetDateString()
        print(newFolderName)
        if os.path.isdir( newFolderName ):
            print(newFolderName," Exists already ")
        else:
            os.mkdir( newFolderName )
            print(newFolderName," Create OK ")
    else:
        print(inFolderName," not exists, script stop ")

#debug
#MakeDateFolder("F:\\\\temp")
#MakeDateFolder("F:\\\\temp\\\\yank")
#-----------------------------------------------------------------
#接受輸入,調用建立函數
def inputMain():
    import sys
    if len(sys.argv)>=2:
        currentDir = sys.argv[1]
    else:
        print("Please Input Folder Name: ")
        currentDir = raw_input()
    MakeDateFolder(currentDir)
    print("Any Key To Return")
    currentDir = raw_input()
    
if __name__ == "__main__":
    inputMain()
   

然後在TotalCmd中建立一個新的開始菜單操作,Command 就是 該Python檔案,Parameters 是 %p,Start Path 是 . 。這樣就可以在TotalCmd中運行該指令碼,會在TC的目前的目錄下建立形如(YYYY_MM_DD)的目錄。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.