Shaheem PP
Shaheem PP

Reputation: 895

Open folder in VS Code from Windows Explorer

While installing the VS Code, we get an option to tick for Open with Code. I gave the tick mark for only files but not for folders. So how to turn it on after installation?

When I'm opening a file:

When I'm opening a file(IMG)

When I'm opening a folder :

(IMG)

I want the Open with Code option on right-click in the folder just like it shows on files.

Upvotes: 62

Views: 132598

Answers (8)

raisercostin
raisercostin

Reputation: 9219

If you installed vscode via scoop the installer has two registry files, install-context being Open with Code on contextual menu:

scoop install vscode
reg import "<SCOOP>\apps\vscode\current\install-context.reg"
reg import "<SCOOP>\apps\vscode\current\install-associations.reg"

Upvotes: 0

Asilbek Yahyoyev
Asilbek Yahyoyev

Reputation: 1

For VSCodium add this text to created file. (AddVscodiumToPath.reg)

    Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOT\Directory\shell\VSCode]
@="Open with Code"
"Icon"="\"C:\\Program Files\\VSCodium\\VSCodium.exe\""

[HKEY_CLASSES_ROOT\Directory\shell\VSCode\command]
@=hex(2):22,00,43,00,3a,00,5c,00,50,00,72,00,6f,00,67,00,72,00,61,00,6d,00,20,\
  00,46,00,69,00,6c,00,65,00,73,00,5c,00,56,00,53,00,43,00,6f,00,64,00,69,00,\
  75,00,6d,00,5c,00,56,00,53,00,43,00,6f,00,64,00,69,00,75,00,6d,00,2e,00,65,\
  00,78,00,65,00,22,00,20,00,22,00,25,00,56,00,22,00,00,00

Upvotes: 0

afamefuna promise
afamefuna promise

Reputation: 31

Save all your works and re-run your vs-code set up file, that's the .exe program, then tick all the checkboxes at the add desktop to the Taskbar region automatically, once you have done done, click on install, all your histories will be restored back... vs-code is just soft

Upvotes: 2

Erick Petrucelli
Erick Petrucelli

Reputation: 14932

TLDR

Save this contents to a new .reg file:

Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOT\Directory\shell\VSCode]
@="Open with Code"
"Icon"="\"%LocalAppData%\\Programs\\Microsoft VS Code\\Code.exe\""

[HKEY_CLASSES_ROOT\Directory\shell\VSCode\command]
@=hex(2):22,00,25,00,4c,00,6f,00,63,00,61,00,6c,00,41,00,70,00,70,00,44,00,61,\
  00,74,00,61,00,25,00,5c,00,50,00,72,00,6f,00,67,00,72,00,61,00,6d,00,73,00,\
  5c,00,4d,00,69,00,63,00,72,00,6f,00,73,00,6f,00,66,00,74,00,20,00,56,00,53,\
  00,20,00,43,00,6f,00,64,00,65,00,5c,00,43,00,6f,00,64,00,65,00,2e,00,65,00,\
  78,00,65,00,22,00,20,00,22,00,25,00,56,00,22,00,00,00

Run the file and that's it.

Detailed

The answer from @dqureshiumar is correct, if you already checked that option during VS Code installation. But maybe you haven't checked it and don't want or can't reinstall it right now. Or maybe you just need more flexibility about the actions shown when right clicking a folder.

So of course we have a lot of people in comments and/or in other answers here talking about how easy it's to run the installer again. Yes, it is! Just use this solution if you want to do by hand what the installer will do for you, or use this solution as a learning opportunity to understand better how Windows manage context menu actions on directories, to be able to customize what you want for other use cases.

Disclaimer

Dealing with regedit can be dangerous. Use it with caution and create a .reg backup before starting if you're not so experienced on it.

Instructions

So you are able to create your own folder actions at the Windows Registry:

  • Press ⊞ Win + R and type regedit.
  • Navigate to the path HKEY_CLASSES_ROOT\Directory\shell.
  • Right click and create a new Key named vscode.
  • At the (Default) REG_SZ, put the desired text, like Open with Code.
  • Optionally, create an Icon key pointing to the Code.exe path (most likely "C:\Users\%UserName%\AppData\Local\Programs\Microsoft VS Code\Code.exe").

At this point, something like this:

Added new Directory/shell Action on regedit

Yet inside regedit, go ahead:

  • Create another new Key named command inside the vscode one.
  • At the (Default) REG_SZ, put the action to open the current path ("%V") based on your Code.exe path (most likely "C:\Users\%UserName%\AppData\Local\Programs\Microsoft VS Code\Code.exe" "%V").

Now, see something like this:

Added new command key inside vscode action on regedit

Finally, go ahead to Windows Explorer and right click any folder:

enter image description here

It's updated on demand, so you can also play with text, icon and command to try your own custom actions, if you want. The VS Code Command Line Interface reference could be helpful if you want to play with another possibilites, like adding the clicked folder to the current Workspace.

Permission Error

If you try to "Open with Code" a folder from a different drive than your VS Code installation (most likely C:), maybe you'll receive an error message starting with "You do not have permission to...". This is because a REG_SZ record can be wrongly interpreted in cases it contains multiple strings inside the value. Unfortunately the Windows Registry Editor UI doesn't offer a way to convert REG_SZ to REG_EXPAND_SZ on (Default) keys. If you face this problem, just use my TLDR solution with the hex(2) value, which will automatically create the REG_EXPAND_SZ type.

Upvotes: 113

Maksim Sergeevich
Maksim Sergeevich

Reputation: 1

I have an easy decision of the problem with @Erick Petrucelli method.

Just edit this step (described by @Erick Petrucelli):

Create another new Key named command inside the vscode one. At the (Default) REG_SZ, put the action to open the current path ("%1") based on your Code.exe path (most likely "%LocalAppData%\Programs\Microsoft VS Code\Code.exe" "%1"

Instead of "%1" you should set "."

Now, it should work. Enjoy!

Upvotes: 0

Walid Bousseta
Walid Bousseta

Reputation: 1469

much more sample way to do that (same solution of @Erick Petrucelli)

  1. Create a file with ".reg" extension
  2. Apply the following code
Windows Registry Editor Version 5.00

; Open files [HKEY_CLASSES_ROOT\*\shell\Open with VS Code] @="Edit with VS Code"
"Icon"="%LocalAppData%\\Programs\\Microsoft VS Code\\Code.exe,0"

[HKEY_CLASSES_ROOT\*\shell\Open with VS Code\command]
@="\"%LocalAppData%\\Programs\\Microsoft VS Code\\Code.exe\" \"%1\""

; This will make it appear when you right click ON a folder
; The "Icon" line can be removed if you don't want the icon to appear
[HKEY_CLASSES_ROOT\Directory\shell\vscode]
@="Open in VS Code"
"Icon"="\"%LocalAppData%\\Programs\\Microsoft VS Code\\Code.exe\",0"

[HKEY_CLASSES_ROOT\Directory\shell\vscode\command]
@="\"%LocalAppData%\\Programs\\Microsoft VS Code\\Code.exe\" \"%1\""

; This will make it appear when you right click INSIDE a folder
; The "Icon" line can be removed if you don't want the icon to appear
[HKEY_CLASSES_ROOT\Directory\Background\shell\vscode]
@="Open in VS Code"
"Icon"="\"%LocalAppData%\\Programs\\Microsoft VS Code\\Code.exe\",0"

[HKEY_CLASSES_ROOT\Directory\Background\shell\vscode\command]
@="\"%LocalAppData%\\Programs\\Microsoft VS Code\\Code.exe\" \"%V\""
  1. Open that file by double click / hit Enter. It will ask for permission, after that, it will apply a new context to right click in Windows Explorer. It will save time and improve productivity.

source

Upvotes: 8

Carlos Luis Rivera
Carlos Luis Rivera

Reputation: 3693

As Marc L. has already pointed out, reinstallation is the easiest way to activate Open with Code. The reinstallation does not affect the settings and extensions you previously had.

  1. Just download VScode here;
  2. Run the installer;
  3. In the installer, click to activate the following two options:
    • Add "Open with Code" action to Windows Explorer file context menu
    • Add 'Open with Code" action to Windows Explorer directory context menu

Upvotes: 31

dqureshiumar
dqureshiumar

Reputation: 966

During the installation you have to check the option to Open With Code.

To open a folder in Visual Studio Code there are two ways possible.

  1. Right Click on the Folder on inside the folder area and Click on open with code.

enter image description here

  1. The Second way to open with code can be using terminal. Go to your folder path using cmd and just hit code .. Your folder will be open in Visual Studio Code

enter image description here

Upvotes: 13

Related Questions