System.IOUtils.TPath.IsPathRooted

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

class function IsPathRooted(const Path: string): Boolean; inline; static;

C++

static bool __fastcall IsPathRooted(const System::UnicodeString Path);

Properties

Type Visibility Source Unit Parent
function public
System.IOUtils.pas
System.IOUtils.hpp
System.IOUtils TPath

Description

Checks whether a given path is relative or absolute.

Call IsPathRooted to check whether the given path is relative or absolute. IsPathRooted returns true if the path is absolute; false otherwise.


The following table lists the parameters expected by this method:

Name Meaning

Path

The verified path


See Also