34

After installing an extension in Visual Studio Code, where do the files go?

nickf
  • 537,072
  • 198
  • 649
  • 721

2 Answers2

58

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

Community
  • 1
  • 1
nickf
  • 537,072
  • 198
  • 649
  • 721
6

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

Inèlic
  • 71
  • 1
  • 2