首页 > 编程 > Python > 正文

Python实现按当前日期(年、月、日)创建多级目录的方法

2020-01-04 15:21:25
字体:
来源:转载
供稿:网友

先看实际效果,现在时间2018.4.26

Python,创建多级目录,创建目录

使用python脚本按照年月日生成多级目录,创建的目录可以将系统生成的日志文件放入其中,方便查阅,代码如下:

#!/usr/bin/env python#coding=utf-8import timeimport 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/'+'/'+yearfileMonth=fileYear+'/'+monthfileDay=fileMonth+'/'+dayif 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 datetimetoday = datetime.date.today()

想要指定到時分秒的話可以搞成這樣

import datetime#這就是指定 2008/12/5 23:59:59today = 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 datetimex = datetime.datetime.now() #現在時間#x = datetime.datetime(2008, 12, 5, 23, 59, 59) #指定時間x.year #會拿到 2008x.month #會拿到 12x.day # 會拿到 5x.hour  #時x.minute #分x.second #秒 59

总结

以上所述是小编给大家介绍的Python实现按当前日期(年、月、日)创建多级目录的方法,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对VEVB武林网网站的支持!


注:相关教程知识阅读请移步到python教程频道。
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表