python 获取图片修改时间
时间: 2023-09-29 11:04:10 浏览: 88
python获得文件创建时间和修改时间的方法
5星 · 资源好评率100%
要获取图片的修改时间,可以使用`os.path`模块中的`getmtime`函数。以下是一个示例代码:
```python
import os
def get_image_modified_time(file_path):
if os.path.exists(file_path) and os.path.isfile(file_path):
modified_time = os.path.getmtime(file_path)
return modified_time
else:
return None
image_path = "path/to/your/image.jpg"
modified_time = get_image_modified_time(image_path)
if modified_time is not None:
print("Image modified time:", modified_time)
else:
print("Image file not found.")
```
在上面的代码中,`get_image_modified_time`函数接受图片文件的路径作为参数,并使用`os.path.exists`检查文件是否存在,然后使用`os.path.isfile`检查是否为文件。如果文件存在且为图片文件,则调用`os.path.getmtime`函数获取修改时间。最后,根据返回的修改时间进行处理。
请将`"path/to/your/image.jpg"`替换为你实际的图片文件路径。
阅读全文