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 folder :
I want the Open with Code
option on right-click in the folder just like it shows on files.
TLDR
Save this contents to a new
.reg
file: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:
regedit
.HKEY_CLASSES_ROOT\Directory\shell
.Key
namedvscode
.(Default)
REG_SZ
, put the desired text, likeOpen with Code
.Icon
key pointing to theCode.exe
path (most likely"C:\Users\%UserName%\AppData\Local\Programs\Microsoft VS Code\Code.exe"
).At this point, something like this:
Yet inside
regedit
, go ahead:Key
namedcommand
inside thevscode
one.(Default)
REG_SZ
, put the action to open the current path ("%V"
) based on yourCode.exe
path (most likely"C:\Users\%UserName%\AppData\Local\Programs\Microsoft VS Code\Code.exe" "%V"
).Now, see something like this:
Finally, go ahead to Windows Explorer and right click any folder:
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 aREG_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 convertREG_SZ
toREG_EXPAND_SZ
on(Default)
keys. If you face this problem, just use my TLDR solution with thehex(2)
value, which will automatically create theREG_EXPAND_SZ
type.