RosettaCodeData/Task/Check-that-file-exists/PowerShell/check-that-file-exists.ps1
2026-04-30 12:34:36 -04:00

6 lines
121 B
PowerShell

if (Test-Path -Path .\input.txt) {
write-host "File input exist"
}
else {
write-host "File input doesn't exist"
}