使用以下命令测试路径。
$IMLocation = C:\Test\
$AppName = Test
if (Test-Path ($IMLocation + "$AppName\ - include $AppName.msi,$AppName.xml"))
上面的代码返回“false”,尽管我在'IMLocation'中都有两个文件(msi,xml)。不知道为什么?请帮忙。
答案 0 :(得分:1)
试试这个:
$IMLocation = "C:\Test\"
$AppName = "Test"
if (Test-Path -path "$IMLocation*" -include "$AppName.msi","$AppName.xml")