vote up 1 vote down star

is there any windows API or shell API which will give a notification on when a file is added or deleted in a folder

flag

5 Answers

vote up 0 vote down check

These API's can help you. and you can find a nice tutorial here

FindFirstChangeNotification

FindCloseChangeNotification

FindNextChangeNotification

link|flag
vote up 3 vote down

See Directory Management Functions, more specifically FindFirstChangeNotification.

link|flag
vote up 0 vote down

Yes, the Win32 API provides the FindFirstChangeNotification function for this.

link|flag
vote up 3 vote down

FindFirstChangeNotification will notify you when something changes.

ReadDirectoryChangesW can give you the exact details of what changed.

link|flag
vote up 1 vote down

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

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.