RosettaCodeData/Task/Check-that-file-exists/PowerShell/check-that-file-exists.psh

7 lines
121 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
if (Test-Path -Path .\input.txt) {
write-host "File input exist"
}
else {
write-host "File input doesn't exist"
}