Reputation: 546005
After installing an extension in Visual Studio Code, where do the files go?
Upvotes: 43
Views: 43003
Reputation: 151
Alternative way to get to the extension folder
Within VSCode, pressing ctrl
+ shift
+ p
, and type:
"Open Extension Folder". Then press enter.
It will take you to the ~/.vscode/extensions
folder
Upvotes: 14
Reputation: 546005
Where are extensions installed?
Extensions are installed in a per user extensions folder. Depending on your platform, the location is in the following folder:
- Windows
%USERPROFILE%\.vscode\extensions
- macOS
~/.vscode/extensions
- Linux
~/.vscode/extensions
https://code.visualstudio.com/docs/editor/extension-gallery#_common-questions
Upvotes: 72