I succeeded in developing C# code for drag files from windows explorer to listBox.
// Drag and Drop Files to Listbox
private void listBox1_DragEnter(obje
if fileName
is a directory you can create a DirectoryInfo
object and loop through all files (and subdirs)
you can have a look at this code:
http://weblogs.asp.net/israelio/archive/2004/06/23/162913.aspx
(you dont need to use a DirectoryInfo
object, you can also use the static methods from the Directory
class