码迷,mamicode.com
首页 > 其他好文 > 详细

修改文件时间属性的方法

时间:2015-02-08 20:42:52      阅读:191      评论:0      收藏:0      [点我收藏+]

标签:

Windows下:

1. bat文件?

2. Python

import os,sys,time
from stat import *
filename=ChenRef.bib
#指定期望修改后的时间
TimeForChange = 2017-01-10 07:51:21
#转换时间格式为long型
ConverTime = time.mktime(time.strptime( TimeForChange,%Y-%m-%d %H:%M:%S) )
#print(TimeForChange+‘ 转换后:‘+str(ConverTime))
#
#
print(‘-------------修改前----------------‘)
#
#创建时间
#
print(‘创建时间  ‘+time.ctime(os.path.getctime(filename)))
#
#最后修改时间
#
print(‘修改时间  ‘+time.ctime(os.path.getmtime(filename)))
#
#访问时间
#
print(‘访问时间  ‘+time.ctime(os.path.getatime(filename)))

#修改文件时间戳
times=(ConverTime,ConverTime)
#进行修改
os.utime(filename, times)

#print( ‘-------------修改后----------------‘)
#
#创建时间
#
print(‘创建时间  ‘+time.ctime(os.path.getctime(filename)))
#
#最后修改时间
#
print(‘修改时间  ‘+time.ctime(os.path.getmtime(filename)))
#
#访问时间

#print(‘访问时间  ‘+time.ctime(os.path.getatime(filename))) 

修改文件时间属性的方法

标签:

原文地址:http://www.cnblogs.com/likeatree/p/4280388.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!