码迷,mamicode.com
首页 > Windows程序 > 详细

FileExistsError: [WinError 183] 当文件已存在时,无法创建该文件。

时间:2021-07-26 16:53:37      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:文件   pre   错误   rgb   path   pat   ror   报错   file   

源代码:

train_dir = os.path.join(base_dir, train)
os.mkdir(train_dir)

错误提示:

FileExistsError: [WinError 183] 当文件已存在时,无法创建该文件。

修改代码:

train_dir = os.path.join(base_dir, train)
if not os.path.exists(train_dir):
    os.mkdir(train_dir)

写上这条语句能够再次运行代码,再次运行代码不再报错。

FileExistsError: [WinError 183] 当文件已存在时,无法创建该文件。

标签:文件   pre   错误   rgb   path   pat   ror   报错   file   

原文地址:https://www.cnblogs.com/pistachio0812/p/15059430.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!