Registriert seit: 29. Mai 2002
37.621 Beiträge
Delphi 2006 Professional
|
Re: Wie finde ich die Windows Systempfade z.B : C:\Windows\t
20. Aug 2003, 16:32
Also ich hätte es j aso gemacht:
Delphi-Quellcode:
function GetSysDir: String;
const
UNLEN = MAX_PATH;
var
Size: DWORD;
buffer : array[0..UNLEN] of Char;
begin
Size := UNLEN + 1;
if GetSystemDirectory(buffer, Size) <> 0 then
result := String(buffer)
else
result := '';
end;
Und:
Delphi-Quellcode:
function GetWinDir: String;
const
UNLEN = MAX_PATH;
var
Size: DWORD;
buffer : array[0..UNLEN] of Char;
begin
Size := UNLEN + 1;
if GetWindowsDirectory(buffer, Size) <> 0 then
result := String(buffer)
else
result := '';
end;
Michael Ein Teil meines Codes würde euch verunsichern.
|