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):
code "/path/to/my/project"
Or with -r
parameter to reuse the last active window:
code -r "/path/to/my/project"