gpt4 book ai didi

Python3.4 : Opening file with mode 'w' still gives me FileNotFound error

转载 作者:太空狗 更新时间:2023-10-29 20:12:19 27 4
gpt4 key购买 nike

<分区>

我遇到了一个小问题:在 'w' 模式下使用函数 open() 时,所有文档都说如果文件创建了不存在。不幸的是,在我的例子中,由于某种原因出现了 FileNotFound 错误。

with open(newFileName, 'w') as newFile:
#CODE

我收到以下错误:

FileNotFoundError: [Errno 2] No such file or directory: 'path of file I have specified'

知道为什么会这样吗?提前致谢!

编辑:对于那些询问该目录是否存在的人,我对代码做了一些小改动,可能会告诉您它确实是一个好的路径。

if not os.path.exists("example"):
os.makedirs("example")

BASE_DIR = os.path.dirname(os.path.abspath(__file__))

newFileName = "example/restOfPath"
newFileName = os.path.join(BASE_DIR,newFileName)

with open(newFileName, 'w') as newFile:

我仍然收到以下错误:

FileNotFoundError: [Errno 2] No such file or directory: 'correctPathToDirectory/example/restOfPath'

EDIT2:忽略这个问题,问题解决了。在“example”之后创建了第二个目录,因此它不起作用。愚蠢的错误。

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