Hi mchamo,
void Uploader_FileUploaded(object sender, UploaderEventArgs args)
{
//Copys the uploaded file to a new location.
args.CopyTo("c:\\temp\\"+args.FileName);
//You can also open the uploaded file's data stream.
//System.IO.Stream data = args.OpenStream();
}
You can write customization code and change "c:\\temp\\"+args.FileName to the actual file name based on your requirement.
Thanks for asking