微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

如何修复 Visual Studio 代码路径错误?

如何解决如何修复 Visual Studio 代码路径错误?

所以我在可视化代码中遇到了这个问题,当我在一个项目的同一目录中打开一个文件时,除非我给他整个目录,否则可视化代码不会识别该文件

这是错误的图像:

This is the image of the error

解决方法

试试这样手动设置工作目录:

/tmp/1/
/tmp/2/file
import os

print("Current working directory: {0}".format(os.getcwd()))

> Current working directory: /tmp/1

open('file','r')

> Traceback (most recent call last):
>   File "<stdin>",line 1,in <module>
> FileNotFoundError: [Errno 2] No such file or directory: 'file'

os.chdir('/tmp/2')

open('file','r')

> <_io.TextIOWrapper name='file' mode='r' encoding='UTF-8'>

您也可以设置与正在运行的python文件相关的目录:

import os
print(os.path.dirname(os.path.abspath(__file__)))
python /tmp/1/file.py

> /tmp/1

好的做法是在全局配置文件中的某处设置应用程序路径

,

cwd

指定调试器的当前工作目录,它是代码中使用的任何相对路径的基本文件夹。如果省略,则默认为 ${workspaceFolder}(在 VS Code 中打开的文件夹)。

您可以将其设置为:${fileDirname} - 当前打开的文件的目录名(official docs)

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。