Home > Enterprise >  How to create a file in the terminal of VSC?
How to create a file in the terminal of VSC?

Time:09-27

I know how to create a folder in the terminal of vsc mkdir NameOfFolder, but how to create a file in the terminal?

CodePudding user response:

Ctrl ` to open the terminal in vsc ....... Echo. > "File.txt" to create a new file txt in the current directory.

  • Related