Think Twice
IT技術メモ | PowerShellのメモ
Created: 2021-07-24 / Updated: 2021-07-24

PowerShellでファイルやフォルダの存在チェックを行う


目次


Test-Pathを利用する

Copy
PS C:\Users\fumo> ls c:\temp


    ディレクトリ: C:\temp


Mode                 LastWriteTime         Length Name
----                 -------------         ------ ----
                     :
                     : (略)
                     :
-a----        2021/06/14      0:26             31 out.txt
-a----        2021/06/14      0:26             31 out2.txt
-a----        2021/06/14      0:26             70 out3.txt
                     :
                     : (略)
                     :


PS C:\Users\fumo> Test-Path C:\temp\out.txt
True
PS C:\Users\fumo> Test-Path C:\temp\out2.txt
True
PS C:\Users\fumo> Test-Path C:\temp\out3.txt
True
PS C:\Users\fumo> Test-Path C:\temp\out4.txt
False
PS C:\Users\fumo> Test-Path C:\temp
True
PS C:\Users\fumo> Test-Path C:\temp2
False

参考

参考サイト