Hi Guys.
First of all is it possible to detect a file copying/moving within the system, I'm sure this is done in lower languages like C++ but I've tried searching but I don't seem to find not even en example, maybe it because I don't know how it correctly called. The copying will be occuring outside my application, I want something like hooking if thats the correct term.
Also the most importent part is how can I detect file drag and drop. Let me clear this out I don't mean to allow drag and drop within VB.NET app(Form) but want to know or detect if a user is dragging a file within the explorer. Eg. A user opens "D:/My Files/" and drag and drop file(s) from this directory to another directory let's say he droped it at "C:/New Copy/" directory, But I don't want to hard code the source and destinations they must be received dynamically if that the right term to use or should I say the paths must be received through Shell or OS.
The technique I want to use is the same as that used by Windows File Copy which when you drag and drop a file this application starts and gets the source and destination paths and begin copying your files. How can I do such a thing VB.NET, C#, or C++ But I think lower IO is good as I want to work much close to or whith the OS to receive such events and then take over.
Hope the question is clear to understand and that someone have some solution, sample, source, documents, links.