RosettaCodeData/Task/Create-a-file/PowerShell/create-a-file.psh

5 lines
140 B
Plaintext

New-Item output.txt -ItemType File
New-Item \output.txt -ItemType File
New-Item docs -ItemType Directory
New-Item \docs -ItemType Directory