RosettaCodeData/Task/Check-that-file-exists/PowerShell/check-that-file-exists.psh
2023-07-01 13:44:08 -04:00

6 lines
121 B
Text

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