我正在尝试引用网络驱动器上 Windows Visual Studio Code 的 c++ 附加组件包含路径的位置。但 VSC 找不到该位置。
"configurations": [
{
"name": "Custom",
"includePath": [
"${workspaceFolder}/**",
"\\\\ndev\\somepathtostuff"
],
"defines": [],
"compilerPath": "",
"cStandard": "c11",
"cppStandard": "c++17",
"intelliSenseMode": "gcc-x64"
}
],
"version": 4
我尝试引用的路径是 \\ndev\somepathtostuff'。有什么原因导致它不起作用吗?
答案1
发布此文后,我意识到在文件资源管理器中使用正斜杠表示网络位置不起作用。但对于 VSC 却有效。
因此,路径“\\bin\stuff”变成“//bin/stuff”。