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

7 lines
121 B
PowerShell
Raw Permalink Normal View History

2026-04-30 12:34:36 -04:00
if (Test-Path -Path .\input.txt) {
write-host "File input exist"
}
else {
write-host "File input doesn't exist"
}