![Visual Studio Code에서 네트워크 위치 사용](https://rvso.com/image/1597823/Visual%20Studio%20Code%EC%97%90%EC%84%9C%20%EB%84%A4%ED%8A%B8%EC%9B%8C%ED%81%AC%20%EC%9C%84%EC%B9%98%20%EC%82%AC%EC%9A%A9.png)
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'가 됩니다.