ファイル・フォルダの存在確認 Test-Path

いずれか1つはファイルが存在するか?

 $files = @("1.txt", "2.txt", "3.txt")
 
 if (($files | % { Test-Path $_}) -contains $true) {
     echo "Ok"
 } else {
     echo "Not"
 }

トップ   新規 一覧 検索 最終更新   ヘルプ   最終更新のRSS