Home > Software design >  VS Code Project Folder
VS Code Project Folder

Time:09-18

Where should I keep my projects? There is no special folder in VS Code. Do I have to create it? Where? Maybe .vscode folder is the best option? Or this will be automatically removed after you uninstall/reinstall the editor?

CodePudding user response:

You can keep them in the default location:

%USERPROFILE%sourcerepos

Or create another folder and name it Projects (for example) in another drive.

CodePudding user response:

Any folder can be your project. That’s why there’s the “Open folder” command. How to best organize your project inside that folder depends on what type of project it is.

  • Related