These forums are read-only and considered to be an archive. Please use the new Community for future interaction and posts.

e.UploadedFiles is no longer available, while documentation says it is

You can't use e.UploadedFiles anymore with version3, while documentation says it can

private static void FileManagerUploaded(object sender, FileManagerUploadedEventArgs e)
        {
            //e.RootFolder
            //e.Path
            //e.UploadID
            //e.UploadedSize
            //e.TimeElapsed
            //e.UploadedFiles
            
            System.Diagnostics.Trace.WriteLine(e.RootFolder.MapPath(e.Path), "FileManagerUploaded");
            System.Diagnostics.Trace.Indent();

            System.Diagnostics.Trace.WriteLine(e.UploadInfo.FileName);

            System.Diagnostics.Trace.Unindent();
        }
Tom 8/26/2011 1:14 AM
Hi Tom,
Uploaded event is raised per file with version 3 so there is no more UploadedFiles collection. Sorry for the confusion in the code comments. For example, you can access the file name with e.UploadInfo.FileName and if 3 files are added to the upload dialog, then 3 separate events will be raised. The upload mechanism is changed for providing better performance and statistics in the upload dialog. As files are processed one by one, 2GB upload limit will not restrict the total size of the files added in the upload dialog.
Cem Alacayir 10/12/2011 2:13 PM
With v3.0.2, you will be able to access all the uploaded files with a new property, please see:
FileUltimate v3.0.2 is released
Cem Alacayir 10/20/2011 12:48 PM