ActionEngineUtilIsAbsoluteDir Method

Return a value indicating whether the given path name is absolute.

Definition

Namespace: ActionEngine
Assembly: ActionEngine (in ActionEngine.dll) Version: 26.2117.4453
C#
public static bool IsAbsoluteDir(
	string pathName
)

Parameters

pathName  String
The path name to inspect.

Return Value

Boolean
True if the caller's path is absolute. Otherwise, false.

Remarks

This implementation is purely practical and doesn't pay any attention to the convoluted articles in Wikipedia or elsewhere. In this operation, an absolute path is one that can NOT be added to the end of another path portion, and a relative path is one that can.

See Also