gpt4 book ai didi

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

转载 作者:qq735679552 更新时间:2022-09-28 22:32:09 25 4
gpt4 key购买 nike

CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.

这篇CFSDN的博客文章Python脚本按照当前日期创建多级目录由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.

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

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#!/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()

执行 。

?
1
2
[root@localhost AccountInspector] # python timeFile.py
localtime=2017-01-22 10:20:52

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

?
1
2
[root@localhost 22] # pwd
/data/python-scripts/inspector/AccountInspector/badJsidAccountLogs/2017/01/22

文件也已经生成 。

?
1
2
3
[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脚本按照当前日期创建多级目录的文章就讲到这里了,如果你想了解更多关于Python脚本按照当前日期创建多级目录的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com