RosettaCodeData/Task/Create-a-file/PowerShell/create-a-file.ps1
2026-04-30 12:34:36 -04:00

4 lines
140 B
PowerShell

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