gpt4 book ai didi

python - Python 中 Windows 路径中的双反斜杠错误

转载 作者:太空宇宙 更新时间:2023-11-03 13:00:42 24 4
gpt4 key购买 nike

<分区>

我想在 Python 3.3 中使用 Windows 中的路径,但出现错误:

FileNotFoundError: [Errno 2] No such file or directory: 'E:\\dir\\.project'

问题是双反斜杠。我使用 r 阅读了解决方案。

def f(dir_from):
list_of_directory = os.listdir(dir_from)
for element in list_of_directory:
if os.path.isfile(os.path.join(dir_from, element)):
open(os.path.join(dir_from, element))

f(r'E:\\dir')

我又报错了

FileNotFoundError: [Errno 2] No such file or directory: 'E:\\dir\\.project'

os.path.normpath(path) 没有解决我的问题。

我做错了什么?

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