Hi
Using the FileDropTargetManager, is it possible to detect in the DragOver (or DragEnter) event if the item being dropped is a file or folder?
I have a treeview on which I want to allow drop a file but not a folder so I want to change the e.Effect to provide a visual cue of that.
Don't forget that I can also drag multiple items (2 files and 1 folder) in a single drag operation in which I would want the Effect to allow "DragDropEffects.Copy" (and I handle myself in the DragDrop event if it is a file or a folder).