python 根據時間戳建立目錄操作

遇事不决,量子力学發表於2024-10-06

目錄操作需要用到os模組

import os
import time
import datetime

# 獲取當前時間戳 20240101100101格式
current_run = datetime.datetime.now().strftime("%Y%m%d%H%M%S")
print(datetime.datetime.now().strftime("%Y%m%d%H%M%S"))
# 獲取當前執行目錄
print(os.getcwd())
# 獲取上一級目錄
print(os.path.dirname(os.getcwd()))

相關文章