标签:os.path datetime ftime 当前时间 路径 ISE port %s dir
import datetime
import os
# 当前时间
nowTime = datetime.datetime.now().strftime(‘%Y-%m-%d-%H-%M-%S‘)
# 当前时间目录路径
pathStr = os.path.abspath(‘.‘) + "/" + nowTime
# 是否存在
isExists = os.path.exists(pathStr)
# 不存在则创建
if not isExists:
os.makedirs(pathStr)
标签:os.path datetime ftime 当前时间 路径 ISE port %s dir
原文地址:https://www.cnblogs.com/ioswws/p/10095400.html