maxfax
maxfax

Reputation: 4315

Delphi: TJvChangeNotify/TShellChangeNotifier - file's name

How to know what file was changed (it's name) on Change Event of TJvChangeNotify (JEDI) or TShellChangeNotifier?

Thanks!

Upvotes: 2

Views: 1369

Answers (1)

Sertac Akyuz
Sertac Akyuz

Reputation: 54812

Both components use FindFirstChangeNotification to monitor changes. As indicated in its documentation the function does not provide information on what triggered the notification. As such the only possible way to find out what happened using these components is to keep a snapshot of the monitored folder and perform a comparison after a change occurs.

If you decide to use ReadDirectoryChangesW as suggested by FindFirstChangeNotification's documentation, see this answer. Or instead, if you decide to use SHChangeNotifyRegister see this article.

Upvotes: 3

Related Questions