ATFileNotif

From Free Pascal wiki
Revision as of 21:18, 15 September 2015 by FTurtle (talk | contribs) (added category)
Jump to navigationJump to search

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.