Make New Folder with Current Date
作者:XD / 发表: 2022年3月18日 01:10 / 更新: 2022年3月18日 01:10 / 编程笔记 / 阅读量:1046
Make New Folder with Current Date
import time
import os
#obtain local time
time_now = time.strftime("%Y%m%d", time.localtime())
#obtain current path
root = os.getcwd()
path = os.path.join(root, time_now)
if not os.path.exists(path):
os.makedirs(path)
print("make new dir: ", path)
相关标签