is there any windows API or shell API which will give a notification on when a file is added or deleted in a folder
|
|
|
|
|
|
|
These API's can help you. and you can find a nice tutorial here |
||
|
|
|
|
See Directory Management Functions, more specifically |
||
|
|
|
|
Yes, the Win32 API provides the FindFirstChangeNotification function for this. |
||
|
|
|
|
FindFirstChangeNotification will notify you when something changes. ReadDirectoryChangesW can give you the exact details of what changed. |
||
|
|
|
|
The FindFirstChangeNotification Function is already mentioned. In case you need something more than the win32 API, here is a very good project for watching folders: CDirectoryChangeWatcher - ReadDirectoryChangesW all wrapped up |
||
|
|
