On Wed, 26 Feb 2014 23:32:20 GMT, Colin Grogan wrote:

Looking at the file that actually gets through, its always the last one I select. My guess is that because req.files is an array[string], and the key is the same in each case, the array[string] is just over-ridden every time. Would this make sense?

Yes, I guess that's exactly the case. I'll change the type of req.files to use a DictionaryList!(FilePart, true) instead of an associative array (like req.form and req.query already do).