参数集测试路径

时间:2017-09-21 11:35:51

标签: powershell

我正在尝试验证脚本中的路径:

Param(
[Parameter(ParameterSetName="Path",
    Mandatory=$true,
    Position=0)]
    [ValidateScript({$_})]
    [String]
    $checkPath )

不确定这是否是测试路径的正确方法?

不检查提供的路径是否存在。

1 个答案:

答案 0 :(得分:0)

function Checking-Path {
Param (
    [Parameter(ParameterSetName="Path",Mandatory=$true,Position=0)]
    [ValidateScript({Test-Path $_})]
    [String]
    $Checkpath
)

Write-Host "Path Exist"
}