欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Python脚本按照当前日期创建多级目录

程序员文章站 2023-11-30 11:54:58
使用python脚本按照年月日生成多级目录,创建的目录可以将系统生成的日志文件放入其中,方便查阅,代码如下: #!/usr/bin/env python #co...

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

#!/usr/bin/env python
#coding=utf-8
import time
import os.path
#获得当前系统时间的字符串
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='/data/python-scripts/inspector/accountinspector/badjsidaccountlogs/'+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()

执行

[root@localhost accountinspector]# python timefile.py 
localtime=2017-01-22 10:20:52

进入文件夹下,可以看到文件目录已经存在了

[root@localhost 22]# pwd
/data/python-scripts/inspector/accountinspector/badjsidaccountlogs/2017/01/22

文件也已经生成

[root@localhost 22]# ll
total 4
-rw-r--r--. 1 root root 29 jan 22 10:20 timefile_0122102052.txt

文件内容

localtime=2017-01-22 10:20:52

总结

以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对的支持。如果你想了解更多相关内容请查看下面相关链接