Python实现按当前日期(年、月、日)创建多级目录的方法
程序员文章站
2022-06-09 12:52:23
先看实际效果,现在时间2018.4.26
使用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实现按当前日期(年、月、日)创建多级目录的方法,希望对大家有所帮助
上一篇: Java 自定义标签
下一篇: Maya单个模型的打灯方法和步骤详解