這篇文章主要講解了Python文件時間的用法,內容清晰明了,對此有興趣的小伙伴可以學習一下,相信大家閱讀完之后會有幫助。
成都創(chuàng)新互聯(lián)是專業(yè)的霸州網(wǎng)站建設公司,霸州接單;提供做網(wǎng)站、網(wǎng)站制作,網(wǎng)頁設計,網(wǎng)站設計,建網(wǎng)站,PHP網(wǎng)站建設等專業(yè)做網(wǎng)站服務;采用PHP框架,可快速的進行霸州網(wǎng)站開發(fā)網(wǎng)頁制作和功能擴展;專業(yè)做搜索引擎喜愛的網(wǎng)站,專業(yè)的做網(wǎng)站團隊,希望更多企業(yè)前來合作!一 按時間創(chuàng)建文件
源碼
# 截圖方式二 # coding=utf-8 import os import time # 當前年月日時分秒時間 2020-01-16-10_11_49 picture_time = time.strftime("%Y-%m-%d-%H_%M_%S", time.localtime(time.time())) #當前年月日 2020-01-16 directory_time = time.strftime("%Y-%m-%d", time.localtime(time.time())) print('當前年月日時分秒時間:'+ picture_time) print("當前年月日:"+directory_time) # 獲取當前文件目錄 print('當前文件目錄:'+os.getcwd()) # 獲取到當前文件的目錄,并檢查是否有 directory_time 文件夾,如果不存在則自動新建 directory_time 文件 try: File_Path = os.getcwd() + '\\' + directory_time + '\\' print(os.path) #exists判斷文件路徑是否存在 if not os.path.exists(File_Path): os.makedirs(File_Path) print("目錄新建成功:%s" % File_Path) else: print("目錄已存在!??!") except BaseException as msg: print("新建目錄失?。?s" % msg) #切換目錄 os.chdir("D:/git") print('切換后的目錄位置:'+os.getcwd())