-
Notifications
You must be signed in to change notification settings - Fork 36
M_CodeJam_IO_PathHelpers_IsWellFormedRelativePath
Andrew Koryavchenko edited this page Jun 17, 2018
·
2 revisions
Determines whether the path is not rooted well-formed relative path.
Namespace: CodeJam.IO
Assembly: CodeJam (in CodeJam.dll) Version: 2.1.0.0
C#
public static bool IsWellFormedRelativePath(
string path
)
VB
Public Shared Function IsWellFormedRelativePath (
path As String
) As Boolean
F#
static member IsWellFormedRelativePath :
path : string -> bool
- path
- Type: System.String
The path.
Type: Booleantrue
if the path is not rooted well-formed relative path; otherwise, false
.