- バックアップ一覧
- 差分 を表示
- 現在との差分 を表示
- ソース を表示
- PowerShell/ファイル操作/ファイル・フォルダの存在確認 Test-Path へ行く。
- 1 (2016-03-23 (水) 04:11:08)
- 2 (2016-03-23 (水) 04:57:10)
ファイル・フォルダの存在確認 Test-Path
いずれか1つはファイルが存在するか?
$files = @("1.txt", "2.txt", "3.txt")
if (($files | % { Test-Path $_}) -contains $true) {
echo "Ok"
} else {
echo "Not"
}