Visual Studio C++ Access to path is denied

22 views Asked by At

I try to debug after successfully compiled dll to use ini Godot engine. I configured my launch.vs.json

{
 "version": "0.2.1",
 "defaults": {},
 "configurations": [
  {
   "type": "default",
   "project": "C:\\dev\\my\\godot\\Godot_v4.2.1-stable_win64.exe",
   "name": "Godot Game",
   "args": [ "--path", "C:\\dev\\my\\godot\\godotcpp\\test1\\godot-cpp-template\\demo" ]
  },

  {
   "type": "default",
   "project": "C:\\dev\\my\\godot\\Godot_v4.2.1-stable_win64.exe",
   "name": "Godot Editor",
   "args": [ "C:\\dev\\my\\godot\\godotcpp\\test1\\godot-cpp-template\\demo\\project.godot" ]
  }
 ]
}

Godot_v4.2.1-stable_win64.exe is in the correct path:

enter image description here

I can see the debug entries in VS++:

enter image description here

but when I click one of them I'm getting this error:

enter image description here

And it's not read only:

enter image description here

0

There are 0 answers