Visual Studio Code has the option to disable extension globally and enable it only for specific workspace.
Where is this settings saved? In which file exactly?
Locations where I checked but couldn't find it are:
%APPDATA%\Code\User\settings.json
.vscode/settings.json
)%USERPROFILE%\.vscode\extensions
Where is this setting?
Visual Studio Code stores that information in the %APPDATA%\Code\User\workspaceStorage
directory. Each subdirectory contains three files: workspace.json
, state.vscdb
, and state.vscdb.backup
.
workspace.json
is a JSON file that contains the URI of the workspace folder. Example:
{
"folder": "file:///c%3A/Users/josia/MEGA/Projects/Programming%20Languages/Python/JSON%20Serialize"
}
state.vscdb
(and state.vscdb.backup
) are SQLite3 files that contain the workspace information that you are looking for. They can be opened with an SQLite viewer/editor such as DB Browser for SQLite.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With