Модератор: Модераторы
function get_home_path():string;
var
home:string;
begin
{$IFDEF LINUX}
Home:=GetEnvironmentVariable('HOME');
if home<>'' then
result:=home;
else
Result:= '';
{$ENDIF}
{$ifdef windows}
SetLength(home,MAX_PATH);
if shfolder.SHGetFolderPath(0,CSIDL_LOCAL_APPDATA,0,0,PChar(home))=0 then
begin
Result=Pchar(home)
end
else
Result := '';
{$endif}
end;
{$IFDEF LINUX}
Home:=GetEnvironmentVariable('HOME');
{$endif}
{$ifdef windows}
Home:=GetEnvironmentVariable('USERPROFILE')
{$endif}
Padre_Mortius писал(а):
- Код: Выделить всё
{$IFDEF LINUX}
Home:=GetEnvironmentVariable('HOME');
{$endif}
{$ifdef windows}
Home:=GetEnvironmentVariable('USERPROFILE')
{$endif}
Сейчас этот форум просматривают: MailRu[bot] и гости: 58