I realize that the file upload control in .NET 4.5 can upload multiple files at once to a single folder but is it possible to upload to parse them into separate folders? For example, if I have hundreds/thousands of files can I upload them so that each goes
into a dynamically-created folder with the same name substring? Ex: MonthlyReportForJohnSmith_092013 could go into a folder named JohnSmith.
If this is possible how could I do it (I know I'm asking two questions here: 1) possibility of sending to different target folders and 2) creating folders from a substring of the name on-the-fly)?
Thanks in advance. I did try searching for quite some time but I haven't found anything close yet.
P.S. It was straightforward to use the file upload control in .NET 4.5 to upload multiple files to one folder. That works well.
Go to the complete details ...