Difference between revisions of "ATFileNotif"

From Free Pascal wiki
Jump to navigationJump to search
(added category)
Line 26: Line 26:
 
=License=
 
=License=
 
MPL 2.0 or LGPL.
 
MPL 2.0 or LGPL.
 +
 +
 +
[[Category:Components]]

Revision as of 22:18, 15 September 2015

About

ATFileNotif is simple component which detects file change. It uses timer, timer checks are file props (file exists; file size; file age) changed or not. It calls OnChanged.

atfilenotif.png

Example

Example of function which starts file watch:

procedure TfmMain.NotifyFile;
begin
  with ATFileNotif1 do
  begin
    Timer.Enabled:= False;
    Timer.Interval:= 1000;
    FileName:= edFileName.Text;
    Timer.Enabled:= True;
  end;
end;

Download

Github: https://github.com/Alexey-T/ATFileNotif-Lazarus

License

MPL 2.0 or LGPL.