GetTempPath Function

Unit
Unit5

Declaration
Function GetTempPath: string;

Implementation

function GetTempPath: string;
var Buffer: array [0..MAX_PATH] of Char;
begin
Windows.GetTempPath(SizeOf(Buffer), Buffer);
Result := IncludeTrailingBackslash(Buffer);
End;


HTML generated by Time2HELP
http://www.time2help.com