or
if (RadAsyncUpload1.UploadedFiles.Count > 0)
{
//This is the actual file name of the selected file, not the temporary file name in the TemporaryFolder directory, so this didn't work.
string filename = Server.MapPath(RadAsyncUpload1.TemporaryFolder) + "\\" + RadAsyncUpload1.UploadedFiles[0].FileName;
string newFilename = Server.MapPath(RadAsyncUpload1.TemporaryFolder) + "\\" + outputFileName;
//Now rename the file in the TemporaryFolder directory. This is a property on RadAsyncUpload. Failed because filename did not exist.
File.Move(filename, newFilename);
}