Python 按当前日期(年月日)创建多级目录的方法
Posted 听风。
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python 按当前日期(年月日)创建多级目录的方法相关的知识,希望对你有一定的参考价值。
先看实际效果,现在时间2018.4.26
使用python脚本按照年月日生成多级目录,创建的目录可以将系统生成的日志文件放入其中,方便查阅,代码如下:
#!/usr/bin/env python #coding=utf-8 import time import os #获得当前系统时间的字符串 localtime=time.strftime(\'%Y-%m-%d %H:%M:%S\',time.localtime(time.time())) print(\'localtime=\'+localtime) #系统当前时间年份 year=time.strftime(\'%Y\',time.localtime(time.time())) #月份 month=time.strftime(\'%m\',time.localtime(time.time())) #日期 day=time.strftime(\'%d\',time.localtime(time.time())) #具体时间 小时分钟毫秒 mdhms=time.strftime(\'%m%d%H%M%S\',time.localtime(time.time())) fileYear=os.getcwd()+\'/upload_files/\'+\'/\'+year fileMonth=fileYear+\'/\'+month fileDay=fileMonth+\'/\'+day if not os.path.exists(fileYear): os.mkdir(fileYear) os.mkdir(fileMonth) os.mkdir(fileDay) else: if not os.path.exists(fileMonth): os.mkdir(fileMonth) os.mkdir(fileDay) else: if not os.path.exists(fileDay): os.mkdir(fileDay) #创建一个文件,以‘timeFile_’+具体时间为文件名称 fileDir=fileDay+\'/timeFile_\'+mdhms+\'.txt\' out=open(fileDir,\'w\') #在该文件中写入当前系统时间字符串 out.write(\'localtime=\'+localtime) out.close()
关于日期时间的其他知识点
import datetime today = datetime.date.today()
想要指定到時分秒的話可以搞成這樣
import datetime #這就是指定 2008/12/5 23:59:59 today = datetime.datetime(2008, 12, 5, 23, 59, 59) #datetime 也可以這樣做加減,一次加一秒 x = datetime.timedelta(seconds = 1) y = datetime.date(2008, 12, 5, 23, 59, 59) w = x + y #w = datetime.datetime(2008, 12, 6, 0, 0) #一次加 23小時 59分 59秒 x = datetime.timedelta(hours = 23, minutes = 59, seconds = 59) w = w + x #w = datetime.datetime(2008, 12, 6, 23, 59, 59)
還有就是,如果想要拿到今天的年,月,日 也是很簡單的說
import datetime x = datetime.datetime.now() #現在時間 #x = datetime.datetime(2008, 12, 5, 23, 59, 59) #指定時間 x.year #會拿到 2008 x.month #會拿到 12 x.day # 會拿到 5 x.hour #時 x.minute #分 x.second #秒 59
以上是关于Python 按当前日期(年月日)创建多级目录的方法的主要内容,如果未能解决你的问题,请参考以下文章