ATFileNotif
From Free Pascal wiki
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.
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.