IPath.IsPathRooted

Syntax

IsPathRooted(Path: String): Boolean;

Parameters

Path - checked path.

Description

The IsPathRooted method returns whether an absolute path to a file is present in the specified string.

The method does not check if path or file name exist. The method returns True for strings like: \\MyDir\MyFile.txt and C:\MyDir, and False for strings like: MyDir\MyFile.txt.

Example

Sub Main;

Var

Path_File, s: String;

Begin

Path_File:="c:\Work\1.txt";

If Path.IsPathRooted(Path_File) Then

s:="Yes";

Else

s:="No";

End If;

End Sub Main;

After executing the example, the "s" variable contains Yes if an absolute path to a file is contained in a path.

See also:

IPath