GetTempPath: String;
The GetTempPath method returns a path to a temporary directory for a current system user.
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: