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.
procedure DeleteAllFiles ( dir: string );
var
tsr: TSearchRec;
begin
if DirectoryExists ( dir ) then begin
dir := IncludeTrailingBackSlash ( dir );
if FindFirst ( dir + '*.*', 0, tsr ) = 0 then begin
repeat
if tsr.name[1] <> '.' then
DeleteFile ( dir + tsr.name );
until FindNext ( tsr ) <> 0;
FindClose ( tsr );
end;
end
else
MessageDlg ( dir + ' does not exist', mtError, [mbOK], 0 );
end;