EN
VS Code - open project folder from command line
10 points
In this short article, we would like to show how to run VS Code from a command line with opened project directory.
Quick solution (run following command):
xxxxxxxxxx
1
code "/path/to/my/project"
Or with -r
parameter to reuse the last active window:
xxxxxxxxxx
1
code -r "/path/to/my/project"