ATFileNotif

From Free Pascal wiki
Jump to navigationJump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

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.