IPath.GetTempPath

Syntax

GetTempPath: String;

Description

The GetTempPath method returns a path to a temporary directory for a current system user.

Example

Sub Main;

Var

s: String;

Begin

s:=Path.GetTempPath;

End Sub Main;

After executing this example, the "s" variable contains a path to a temporary directory for the current user.

See also:

IPath