Powershell で IPAdresses を検証する便利な方法があることは知っています。
[ipaddress]"12.12.12.12"
[ipaddress]"12.12.12.812" #Throws an Error.
ファイル名とパス名を検証する同様の方法があるかどうか知っていますか? 例えば
[path]"c:\temp\t?est.txt" #Throws an Error
Powershell で IPAdresses を検証する便利な方法があることは知っています。
[ipaddress]"12.12.12.12"
[ipaddress]"12.12.12.812" #Throws an Error.
ファイル名とパス名を検証する同様の方法があるかどうか知っていますか? 例えば
[path]"c:\temp\t?est.txt" #Throws an Error
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