Creating ,deleting,and writing the files from powershell on VScode.
you can use the following command to create an empty file:
New-Item -ItemType File -Path "chapter1.txt"
Alternatively, you can also use the following command to create an empty file using the redirection operator >: "" > "chapter1.txt"
Again, replace...