2

Powershell で IPAdresses を検証する便利な方法があることは知っています。

[ipaddress]"12.12.12.12"

[ipaddress]"12.12.12.812" #Throws an Error.

ファイル名とパス名を検証する同様の方法があるかどうか知っていますか? 例えば

[path]"c:\temp\t?est.txt" #Throws an Error

4

1 に答える 1

6

Test-Path次のコマンドレットを使用できます。

Test-Path "c:\temp\t?est.txt" -IsValid

ヘルプから:

PS> help test-path -param isvalid

-IsValid [<SwitchParameter>]
    Determines whether the syntax of the path is correct, regardless of whether the elements of the path exist. This
    parameter returns TRUE if the path syntax is valid and FALSE if it is not.

    Required?                    false
    Position?                    named
    Default value                False
    Accept pipeline input?       false
    Accept wildcard characters?  false
于 2013-04-21T15:04:48.287 に答える