Indicates whether or not a path is relative (i.e. does not start with '/').

Namespace: EnterpriseDT.Util
Assembly: edtFTPnet (in edtFTPnet.dll) Version: 2.2.3.0

Syntax

C#
public static bool IsRelative(
	char separator,
	string path
)
Visual Basic
Public Shared Function IsRelative ( _
	separator As Char, _
	path As String _
) As Boolean
Visual C++
public:
static bool IsRelative(
	wchar_t separator, 
	String^ path
)

Parameters

separator
Type: System..::..Char
path
Type: System..::..String
Path to check

Return Value

true if path is relative.

See Also