使用python,如何阅读文件的“创建日期”?

时间:2012-04-14 00:33:53

标签: python image exif datecreated

我正在python中编写一个简短的脚本,它将扫描图像文件的文件夹列表,然后重新组织它们。

我希望拥有的可选方式之一就是创建日期。

目前,我正在尝试按如下方式阅读图像创建日期

import os.path, time

f = open("hi.jpg")
data = f.read()
f.close()
print "last modified: %s" % time.ctime(os.path.getmtime(f))
print "created: %s" % time.ctime(os.path.getctime(f))

但我收到的错误是

Traceback (most recent call last):
  File "TestEXIFread.py", line 6, in <module>
    print "last modified: %s" % time.ctime(os.path.getmtime(f))
  File "/usr/lib/python2.7/genericpath.py", line 54, in getmtime
    return os.stat(filename).st_mtime
TypeError: coercing to Unicode: need string or buffer, file found

有谁能告诉我这意味着什么?

1 个答案:

答案 0 :(得分:8)

您需要使用字符串作为文件名而不是文件对象。

>>> import os.path, time
>>> f = open('test.test')
>>> data = f.read()
>>> f.close()
>>> print "last modified: %s" % time.ctime(os.path.getmtime('test.test'))
last modified: Fri Apr 13 20:39:21 2012
>>> print "created : %s" % time.ctime(os.path.getctime('test.test'))
created : Fri Apr 13 20:39:21 2012