Python WindowsError: [Error 3]

Python WindowsError: [Error 3] The system cannot find the file specified when trying to rename

解决:文件路径没有找到,检查路径是否存在,是否符合要求,是否有空格啥的

可以利用一个判断语句,验证路径是否存在,若不存在,创建文件路径:

path="文件路径"
if not os.path.exists(path):
    os.makedirs(path)

转载自:https://blog.csdn.net/qq_28048569/article/details/80318360

You may also like...