目錄操作需要用到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()))