Reputation: 21
I would like to know if there are any ways to programmatically detect or monitor the file or folder being copied either by copy command(like on command prompt-- copy a b) or by using drag/drop(ctrl+c and ctr+v). It would be helpful if you could give some pointers( preferably some APIs in vc++)
thanks and regards
Dinakara K
Upvotes: 2
Views: 4596
Reputation: 3112
You need to write a file system filter driver: http://www.microsoft.com/whdc/driver/filterdrv/default.mspx
See also the answers to this question: detect File 'COPY' operation in Windows
Upvotes: 3