Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
uses ... ShlObj....
....
function GetMyDocumentsPath():String;
var
APath : pChar;
begin
GetMem(APath, MAX_PATH + 1);
SHGetSpecialFolderPath(Application.Handle, APath, CSIDL_PERSONAL, False);
SetString(Result, APath, lstrlen(APath));
Result:= Trim(Result);
FreeMem(APath);
end;