判断路径是否存在
$Folder = 'e:\11'
if (Test-Path -Path $Folder)
{
"Path exists!"
}
else
{
"Path doesn’t exist."
}
判断文件是否存在
$File = 'e:\11\a.txt'
if (Test-Path -Path $File)
{
"File exists!"
}
else
{
"File doesnot exist."
}
判断命令是否存在
下面代码测试的是tcping命令,用此方法可以判断java是否安装等
if (Get-Command tcping -errorAction SilentlyContinue)
{
"exists"
}
else
{
"not exists"
}