In my application the user can drag and drop files from windows explorer onto a listbox in my application. This all works excellent however when dragging multiple files, depending which file the user clicks in windows explorer to begin dragging, the order the files passed will differ when calling:

e.Data.GetData(DataFormats.FileDrop)

How do I receive the files in the same order as they are displayed in windows explorer?

Thanks for your help!

link|improve this question

75% accept rate
feedback

1 Answer

up vote 4 down vote accepted

The order you receive them is the order in which they were selected. I encountered this problem once before and as far as I was able to tell you cannot get them in Explorer's sort order.

Therefore your code should assume the user selected them in that order for a reason.

link|improve this answer
Thanks for your response. I am finding the case to be the opposite however in that the user is expecting the files to be in the order they appear when being dragged from windows explorer. – Chris Daviduik May 25 '11 at 18:49
1  
I feel for these users, and it is why I sought out the solution. However, Windows has to assume the user selected them in a given order for a reason, hence you should as well. It isn't great, but it is one of the areas where Windows isn't trying to think for you (which MS is often slammed for in other areas). – sixlettervariables May 25 '11 at 18:51
Fair enough. Thanks for your help. – Chris Daviduik May 25 '11 at 19:25
My "solution" was to provide modifier-keys which turned on the most common sorts (name, date, type). I don't believe those were ever used in production by my users though. – sixlettervariables May 25 '11 at 19:28
This sounds like observed behavior instead of something Explorer is doing by contract. If that's the case, you should at least comment you code to that effect in case some future version of Explorer (or past version you haven't tested) changes behavior and breaks your code's assumptions. I realize that relying on 'current behavior' sometimes needs to be done, but just be sure you understand that and have at least considered the ramifications of a change in that behavior. And be prepared for your application to be the anonymized subject of some future "The Old New Thing" article. – Michael Burr May 26 '11 at 18:45
show 5 more comments
feedback

Your Answer

 
or
required, but never shown

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