delphi GetSystemDirectory()

GetSystemDirectory()
得到系统路径
var
s:pchar;
begin
getmem(s,100);
GetSystemDirectory(s,100) ;
showmessage(s);

end;


s:pchar;

pchar一定要先分配內存後才能使用


你可能感兴趣的:(delphi GetSystemDirectory())