windows power shell create file code example
Example 1: powershell new folder
New-Item -ItemType directory -Path C:\Scripts\newDir
Example 2: powershell new item
New-Item "C:\file.txt" -ItemType File -Force
New-Item -ItemType directory -Path C:\Scripts\newDir
New-Item "C:\file.txt" -ItemType File -Force