具有保留修改时间戳的Compresse文件

时间:2013-12-31 11:55:09

标签: python gzip

我一直在设置文件时间戳,也就像python gzip document一样,语法不像gzip.GzipFile(filename=outputfile,mode='wb',compresslevel=9,mtime=ftime)那样,但是当我使用gzip.GzipFile(outputfile,'wb',9,mtime=ftime)时,它正在工作,但时间戳除外。

def compresse_file(file,ftime):
        data = open(file,'rb')
        outputfile = file +".gz"
        gzip_file = gzip.GzipFile(outputfile,'wb',9,mtime=ftime)
        gzip_file.write(data.read())
        gzip_file.flush()
        gzip_file.close()
        data.close()
        os.unlink(file)

这是输出:

root@ubuntu:~/PythonPractice-# python compresses_file.py
Size      Date      File Name
5 MB      30/12/13  test.sh
Compressing...
test.sh 1388403823.0
file status after compressesion
5 kB      31/12/13  test.sh.gz
root@ubuntu:~/PythonPractice-# date -d @1388403823.0
Mon Dec 30 17:13:43 IST 2013

1 个答案:

答案 0 :(得分:4)

正如您在documentation中看到的那样,mtime参数是写入流的时间戳,它不会影响创建的gzip文件的时间戳。这是解压缩文件在使用gunzip -N解压缩时将具有的时间戳。

示例:

>>> import datetime
>>> import gzip
>>> ts = datetime.datetime(2010, 11, 12, 13, 14).timestamp()
>>> zf = gzip.GzipFile('test.gz', mode='wb', mtime=ts)
>>> zf.write(b'test')
>>> zf.flush()
>>> zf.close()

并解压缩:

$ gunzip -N test.gz
$ stat -c%y test
2010-11-12 13:14:00.000000000 +0100

如果您希望创建的gzip文件具有特定时间戳,请使用os.utime进行更改:

...
st = os.stat(file)
...
os.utime(outputfile, (st.st_atime, st.st_mtime))
...