IsPath(
     path:path
)
bool

Arguments

path

Path to test.

Return value

True if path is a fully-qualified pathname.

Description

Returns True if path is a fully-qualified pathname, otherwise returns False.

Example:

Output(IsPath("C:\Windows\System32"))
--> true

Output(IsPath("System32"))
--> false