RosettaCodeData/Task/Create-a-file/PowerShell/create-a-file.psh
2023-07-01 13:44:08 -04:00

4 lines
140 B
Text

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