Quantcast
Channel: Hey, Scripting Guy! Blog
Viewing all articles
Browse latest Browse all 3333

PowerTip: Use PowerShell to Verify Syntax of Path

$
0
0

Summary: Learn how to use Windows PowerShell to verify the syntax of a path.

Hey, Scripting Guy! Question How can I use Windows PowerShell to verify that a path that accepts user input is using the correct syntax?

Hey, Scripting Guy! Answer Use the –IsValid parameter of the Test-Path cmdlet, for example:

PS C:\> $a = "c:\myfolder\nonexistentfile.txt"

PS C:\> Test-Path $a -IsValid

True

PS C:\> $b = "c:\my()(*&^%\afile.txt"

PS C:\> Test-Path $b -IsValid

False

Note  This command verifies if the syntax is correct for the provider, but it does not verify if the file exists.


Viewing all articles
Browse latest Browse all 3333

Trending Articles