import os
定义要对比的照片文件路径
file1 = "path/to/file1.jpg"
file2 = "path/to/file2.jpg"
获取文件大小
file_size1 = os.path.getsize(file1)
file_size2 = os.path.getsize(file2)
获取文件修改时间
modification_time1 = os.path.getmtime(file1)
modification_time2 = os.path.getmtime(file2)
比较文件大小和修改时间
if file_size1 == file_size2 and modification_time1 == modification_time2:
print("文件属性相同")
else:
print("文件属性不同")