python如何实现日期自动增加(Python脚本按照当前日期创建多级目录)
类别:脚本大全 浏览量:698
时间:2022-01-22 01:58:01 python如何实现日期自动增加
Python脚本按照当前日期创建多级目录使用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
总结
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对开心学习网的支持。如果你想了解更多相关内容请查看下面相关链接
原文链接:https://blog.csdn.net/u012062455/article/details/54667060
您可能感兴趣
- python最火开源项目(5月份Github上Python开源项目排行)
- python中输入背景颜色的代码(Python 给屏幕打印信息加上颜色的实现方法)
- python群聊提示(python-itchat 统计微信群、好友数量,及原始消息数据的实例)
- python json转换字符串(python3 json数据格式的转换dumps/loads的使用、dict to str/str to dict、json字符串/字典)
- python正式参数(详解Python的三种可变参数)
- 用python3.5.3实现邮件收发(Python使用POP3和SMTP协议收发邮件的示例代码)
- python操作json库(Python将json文件写入ES数据库的方法)
- pythontkinter详解(python3.6使用tkinter实现弹跳小球游戏)
- pythonrequests怎么导入模块(Python3使用requests模块实现显示下载进度的方法详解)
- python csv文件读取方法(对python读取zip压缩文件里面的csv数据实例详解)
- python正则表达式入门(Python正则表达式实现简易计算器功能示例)
- python把str转成list(python3 字符串/列表/元组str/list/tuple相互转换方法及join函数的使用)
- python转换doc到pdf(利用python将图片版PDF转文字版PDF)
- python装饰器语法与应用(python装饰器简介---这一篇也许就够了推荐)
- python与php(解决Python3 被PHP程序调用执行返回乱码的问题)
- python抽奖代码教程(python实现抽奖小程序)
- 痴情男神 吴彦祖 与妻子恋爱8年,结婚10年,家庭幸福美满(痴情男神吴彦祖)
- 成功破圈,小牛电动SQi强势开 跨(小牛电动SQi强势开)
- 挑战新国标电自天花板,九号机械师MMAX 110P深度体验(挑战新国标电自天花板)
- 《满江红》不要只当电影看,学生应该这样做(满江红不要只当电影看)
- 电影《民间怪谈录之走阴人》定档8月5日,开启一场中式惊悚之旅(电影民间怪谈录之走阴人定档8月5日)
- 原创图画书,以儿童视角讲述中国故事(以儿童视角讲述中国故事)
热门推荐
- vuevlog制作软件(Vue实现Dialog封装)
- python调用excel教程(利用python在excel里面直接使用sql函数的方法)
- python学生管理系统的思路(python实现学员管理系统)
- 利用xampp搭建服务器(xampp集成环境怎样使用MySQL数据库)
- vue中的指令及用法(详解Vue进阶构造属性)
- sql server删除曾经登录过的登录名
- mysql多核cpu利用(mysql CPU高负载问题排查)
- mysql函数编写(MySQL中sum函数使用的实例教程)
- mysql常用优化方法(理解MySQL查询优化处理过程)
- dedecms 目录生成(dedecms实现自动打包文章中图片并下载的方法)
排行榜
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9