Toastie 6 ヶ月 前
コミット
65330a1968
1 ファイル変更2 行追加0 行削除
  1. 2 0
      microsoft/powershell/check-file-is-readable.ps1

+ 2 - 0
microsoft/powershell/check-file-is-readable.ps1

@@ -0,0 +1,2 @@
+foreach($line in Get-Content .\ItemFailureReport_R1_list.txt -Encoding UTF8) {
+try { [System.IO.File]::OpenRead($line).Close() ; Write-Host -NoNewline "." } catch { Write-Host $line } }