I am trying to upload large video files to Amazon S3 from my asp.net-MVC application. But I can not use form POST method as ASP.NET has file size restrictions.
So, I am making an AJAX call to the controller that has all the utilities and methods for uploading the files to AMAZON S3. But I need to pass the complete path of the file for server to read file from my system and this information can not be retreived from Request object as I am not posting the file.
HTML File input control only retains the file name and not the complete path of the file. So, how can I have complete path of the file being passed to the controller where it can be worked upon by Amazon uilities for uploading.