Download all you need here
Files
[ Delphi ] – Delete all files within directory
Jul 4th
{You have to FileListBox component on the form}
procedure TForm1.Button1Click(Sender: TObject);
var
i: Integer;
begin
More >
[ Delphi ] – Find out total size of directory
May 4th
procedure TForm1.Find(Str: string); var MySearch: TSearchRec; FindResult: Integer; begin FindResult:=FindFirst(Str+'\*.*', More >
[ Delphi ] – Show the select directory dialog
May 4th
uses Filectrl; procedure TForm1.Button1Click(Sender: TObject); var Dir: String; begin More >

