Python os.rename windowsError

Ste*_*icz 3 python python-2.7

我有一些代码,我正在努力将时间戳添加到Windows中的文件的开头,我无法让它正常工作.

for root, dirs, files in os.walk('D:\\development\\test'):
    for f in files:
        fullpath = os.path.join(root + os.sep, f)
        print fullpath
        if fullpath.endswith('txt'):
            d = str(mod_date(fullpath))
            dt = d.split()
            newName = str(dt[1]) + '_' + f
            newNameFull = os.path.join(root + os.sep, newName)
            print newNameFull
            os.rename(fullpath, newNameFull)
Run Code Online (Sandbox Code Playgroud)

这将正确打印:

fullpath D:\development\test\New Text Document (2).txt
newNameFull D:\development\test\11:44:04.464341_New Text Document (2).txt
Run Code Online (Sandbox Code Playgroud)

但是os.rename会给出一个windowsError:

Traceback (most recent call last):
  File "D:/Python27/Scripts/getTime.py", line 17, in <module>
os.rename(fullpath, newNameFull)
WindowsError: [Error 123] The filename, directory name, or volume label syntax is incorrect
Run Code Online (Sandbox Code Playgroud)

有任何想法吗?我已经尝试了///\的多次迭代但找不到合适的迭代.

eld*_*his 6

Windows不允许文件名包含:字符(驱动器标识符除外).您需要更改时间戳以使用其他格式.

MSDN参考.