我正在尝试编写一个脚本,通过将文件的创建时间增加 10 秒来更改文件的创建时间。我在 Windows 7 上测试它,但也想在 XP 中运行它。我尝试遵循如何从 Python 更改 Windows 文件的文件创建日期?使用以下代码:
import os
import pywintypes, win32file, win32con
def changeFileCreationTime(fname, newtime):
wintime = pywintypes.Time(newtime)
winfile = win32file.CreateFile(
fname, win32con.GENERIC_WRITE,
win32con.FILE_SHARE_READ | win32con.FILE_SHARE_WRITE | win32con.FILE_SHARE_DELETE,
None, win32con.OPEN_EXISTING,
win32con.FILE_ATTRIBUTE_NORMAL, None)
win32file.SetFileTime(winfile, wintime, None, None)
winfile.close()
for (path, dirs, files) in os.walk('C:/Personal/fc/Images/Corvette'):
for file in files:
print(os.path.join(path, file))
print(os.stat(os.path.join(path, file)))
changeFileCreationTime(os.path.join(path, file),os.stat(os.path.join(path, file)).st_ctime+10)
print(os.stat(os.path.join(path, file)))
但我得到了错误:
Traceback (most recent call last):
File "C:\Python31\Lib\site-packages\pythonwin\pywin\framework\scriptutils.py", line 326, in RunScript
exec(codeObject, __main__.__dict__)
File "C:\Users\hermamr1\Desktop\Script1.py", line 20, in <module>
changeFileCreationTime(os.path.join(path, file),os.stat(os.path.join(path, file)).st_ctime+10)
File "C:\Users\hermamr1\Desktop\Script1.py", line 11, in changeFileCreationTime
win32file.SetFileTime(winfile, wintime, None, None)
ValueError: astimezone() cannot be applied to a naive datetime
我正在 Python 3.1.3 上尝试这个,但如果需要,我可以使用 Python 2.7。我只需要在 Windows 上运行它。