6 lines
121 B
PowerShell
6 lines
121 B
PowerShell
if (Test-Path -Path .\input.txt) {
|
|
write-host "File input exist"
|
|
}
|
|
else {
|
|
write-host "File input doesn't exist"
|
|
}
|