Files

[ Delphi ] – Delete all files within directory

{You have to FileListBox component on the form}
procedure TForm1.Button1Click(Sender: TObject);
var
  i: Integer;
begin
 More >

 

Very PoorPoorRegularGoodVery Good ( Rate this post ! )
Loading ... Loading ...

[ Delphi ] – Find out total size of directory

procedure TForm1.Find(Str: string);
var
  MySearch: TSearchRec;
  FindResult: Integer;
begin
  FindResult:=FindFirst(Str+'\*.*',  More >

 

Very PoorPoorRegularGoodVery Good ( Rate this post ! )
Loading ... Loading ...

[ Delphi ] – Show the select directory dialog

uses Filectrl;

procedure TForm1.Button1Click(Sender: TObject);
var
  Dir: String;
begin  More >

 

Very PoorPoorRegularGoodVery Good ( Rate this post ! )
Loading ... Loading ...