Home > other >  How to open an entire folder through CMD to VSCode?
How to open an entire folder through CMD to VSCode?

Time:03-23

I want to open my entire folder through CMD but I can't seem to find a efficient solution for it. Let's say my folder's name is source:

$ cd source
$ code index.html
$ code style.css
$ code script.js

I don't want to open each one of the files as I did in the above, because I have many files in this folder.

Thanks

CodePudding user response:

From inside the project directory you can use code .

  • Related