Python - os.rename() - OSError: [WinError 123]

旧城冷巷雨未停 提交于 2019-12-31 04:05:13

问题


path='U:\\rmarshall\Work For Staff\\ROB\\_Downloads Folder\\'
file='file.pdf'
newFileName=time.strftime('%Y-%m-%d_')+row[1]+time.strftime('_%H:%M:%S')+'.pdf'
newFolderLocation='U:\\Company - do not alter\\'

os.rename(path+file,newFolderLocation+newFileName)

When I run I get:

>>> os.rename(path+file,newFolderLocation+newFileName)

OSError: [WinError 123] The filename, directory name, or volume label syntax is 
incorrect: 'U:/Company - do not alter/2014-01-14_COMPANY NAME_13:55:23.pdf'

Can anyone see the syntax error?


回答1:


The colon : is not allowed in Windows file names.

See Naming Files, Paths, and Namespaces on MSDN



来源:https://stackoverflow.com/questions/21115580/python-os-rename-oserror-winerror-123

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!