gpt4 book ai didi

python - 为什么我收到错误 : "FileExistsError: [WinError 183] Cannot create a file when that file already exists"?

转载 作者:行者123 更新时间:2023-12-01 08:23:09 25 4
gpt4 key购买 nike

如果我的脚本创建了文件夹,为什么会出现错误?我在 Windows 7 上使用 Python。错误:

FileExistsError: [WinError 183] Cannot create a file when that file already exists: [path to the file or folder in question]

问题是文件和文件夹不存在。

最佳答案

正如评论所指出的,该文件夹已经存在。您似乎认为尝试创建已存在的文件夹应该什么也不做。但 Windows 却不是这么看的。

为避免出现错误消息,请先检查该文件夹是否存在。在创建文件夹的代码之前,执行

if not os.path.exists("name of folder"):

关于python - 为什么我收到错误 : "FileExistsError: [WinError 183] Cannot create a file when that file already exists"?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54491021/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com