在资源管理器中找不到 %APPDATA%\Code\User\settings.json 的真实位置

cannot find real location of %APPDATA%\Code\User\settings.json in explorer

我知道我可以在 vscode 中编辑 settings.json,但我想实际找到物理文件。根据 vscode 文档 https://code.visualstudio.com/docs/getstarted/settings,用户设置文件位于此处:

Windows %APPDATA%\Code\User\settings.json

但是用资源管理器访问它时我看不到任何 settings.json

Settings file locations

Depending on your platform, the user settings file is located here:

Windows %APPDATA%\Code\User\settings.json

但是如何确定 %APPDATA% 在您的系统上的位置?一种简单的方法是创建一个键绑定(在您的 keybindings.json 中),如下所示:

{
  "key":  "alt+q",       // whatever you want
  "command": "workbench.action.terminal.sendSequence",
  "args": {
    "text": "echo ${env:APPDATA}"
  }
},

当这是 运行 时,变量 ${env:APPDATA} 将被解析并打印出来。

它将是这样的:

C:\Users\Cerberus\AppData\Roaming

因此,对于完整路径,请在末尾添加 \Code\User\settings.json。或者在键绑定中使用它:

"text": "echo ${env:APPDATA}\Code\User\settings.json"

输出:C:\Users\Rodan\AppData\Roaming\Code\User\settings.json