Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Hooking into Windows File Copy

Tags:

winapi

api

hook

I want to write my own file copy program that will run when the user chooses 'Paste' / (Ctrl+V) in Windows Explorer. Some programs like CopyHandler and SuperCopier are doing this. But I don't know how.

Please help.

like image 651
Gautam Jain Avatar asked Oct 23 '08 04:10

Gautam Jain


1 Answers

The project catchcopy used by Ultracopier and Supercopier, provide all abstraction of that's. You just need listen named pipe to receive the copy/move to do from the explorer. All is detailed into the wiki.

like image 160
alpha_one_x86 Avatar answered Oct 06 '22 22:10

alpha_one_x86