I am developing an application which required user to drag a file from windows explorer into the application window (winform). Is there a way to read the file name, path and other properties of the file in C#?

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

There is full example here: http://www.dotnetcurry.com/ShowArticle.aspx?ID=192&AspxAutoDetectCookieSupport=1

link|improve this answer
this is a great example. Thanks. – devcoder Dec 6 '10 at 8:37
feedback

You can catch the DragDrop event and get the files from there. Something like:

void Form_DragDrop(object sender, DragEventArgs e)
{
    string[] FileList = (string[])e.Data.GetData(DataFormats.FileDrop, false);

    //more processing
}
link|improve this answer
it works great. Thanks – devcoder Dec 6 '10 at 8:36
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.