Click here to Skip to main content
Licence 
First Posted 19 Oct 2004
Views 223,618
Downloads 1,640
Bookmarked 78 times

UploadFileEx: C#'s WebClient.UploadFile with more functionality

By madmik3 | 19 Oct 2004
UploadFile hides some of the things you might need to get your Windows client simulating forms with file input fields. UploadFileEx gives you more control where you need it!
1 vote, 4.3%
1
1 vote, 4.3%
2

3
2 votes, 8.7%
4
19 votes, 82.6%
5
4.84/5 - 23 votes
2 removed
μ 4.33, σa 1.81 [?]

Introduction

Okay, so you like the idea behind WebClient's UploadFile function, but you can't get it to do all the things you want? That's were I was at a week ago. This is what I learned in the past week. UploadFile seems good enough on the surface but you can run into some tricky things fast, like if you have some cookies to manage or you want to specify the content type, or change the name of the file input in the form? Well, this function will take care of those problems and should make simulating a web form with input type=file as easy as pi, er.. pie. Under the hood is a HttpWebRequest version of UploadFile that you could use to add additional functionality.

For example...

You would like to simulate this web form from your C# application:

<form action ="http://localhost/test.php" method = POST>
<input type = text name = uname>
<input type = password name =passwd>
<input type = FILE name = uploadfile>
<input type=submit>
</form>

You could run UploadFileEx like this:

CookieContainer cookies = new CookieContainer();
//add or use cookies
NameValueCollection querystring = new NameValueCollection();
querystring["uname"]="uname";
querystring["passwd"]="snake3";
string uploadfile;// set to file to upload
uploadfile = "c:\\test.jpg";

//everything except upload file and url can be left blank if needed
string outdata = UploadFileEx(uploadfile, 
     "http://localhost/test.php","uploadfile", "image/pjpeg", 
     querystring,cookies);

So on to the code...

So, this is UploadFileEx:

public static string UploadFileEx( string uploadfile, string url, 
    string fileFormName, string contenttype,NameValueCollection querystring, 
    CookieContainer cookies)
{
    if( (fileFormName== null) ||
        (fileFormName.Length ==0))
    {
        fileFormName = "file";
    }

    if( (contenttype== null) ||
        (contenttype.Length ==0))
    {
        contenttype = "application/octet-stream";
    }


    string postdata;
    postdata = "?";
    if (querystring!=null)
    {
        foreach(string key in querystring.Keys)
        {
            postdata+= key +"=" + querystring.Get(key)+"&";
        }
    }
    Uri uri = new Uri(url+postdata);


    string boundary = "----------" + DateTime.Now.Ticks.ToString("x");
    HttpWebRequest webrequest = (HttpWebRequest)WebRequest.Create(uri);
    webrequest.CookieContainer = cookies;
    webrequest.ContentType = "multipart/form-data; boundary=" + boundary;
    webrequest.Method = "POST";


    // Build up the post message header
    StringBuilder sb = new StringBuilder();
    sb.Append("--");
    sb.Append(boundary);
    sb.Append("\r\n");
    sb.Append("Content-Disposition: form-data; name=\"");
    sb.Append(fileFormName);
    sb.Append("\"; filename=\"");
    sb.Append(Path.GetFileName(uploadfile));
    sb.Append("\"");
    sb.Append("\r\n");
    sb.Append("Content-Type: ");
    sb.Append(contenttype);
    sb.Append("\r\n");
    sb.Append("\r\n");            

    string postHeader = sb.ToString();
    byte[] postHeaderBytes = Encoding.UTF8.GetBytes(postHeader);

    // Build the trailing boundary string as a byte array
    // ensuring the boundary appears on a line by itself
    byte[] boundaryBytes = 
           Encoding.ASCII.GetBytes("\r\n--" + boundary + "\r\n");

    FileStream fileStream = new FileStream(uploadfile, 
                                FileMode.Open, FileAccess.Read);
    long length = postHeaderBytes.Length + fileStream.Length + 
                                           boundaryBytes.Length;
    webrequest.ContentLength = length;

    Stream requestStream = webrequest.GetRequestStream();

    // Write out our post header
    requestStream.Write(postHeaderBytes, 0, postHeaderBytes.Length);

    // Write out the file contents
    byte[] buffer = new Byte[checked((uint)Math.Min(4096, 
                             (int)fileStream.Length))];
    int bytesRead = 0;
    while ( (bytesRead = fileStream.Read(buffer, 0, buffer.Length)) != 0 )
        requestStream.Write(buffer, 0, bytesRead);

    // Write out the trailing boundary
    requestStream.Write(boundaryBytes, 0, boundaryBytes.Length);
    WebResponse responce = webrequest.GetResponse();
    Stream s = responce.GetResponseStream();
    StreamReader sr = new StreamReader(s);

    return sr.ReadToEnd();
}

This might help too..

You can handle the post in various ways but this is the PHP file I wrote to test:

<?php

print_r($_REQUEST);

$uploadDir = '%SOMEPATH';
$uploadFile = $uploadDir . $_FILES['userfile']['name'];
print "<PRE>";
if (move_uploaded_file($_FILES['userfile']['tmp_name'], $uploadFile))
{
    print "File is valid, and was successfully uploaded. ";
}
else
{
    print "Possible file upload attack!  Here's some debugging info:\n";
    print_r($_FILES);
}
print "</PRE>";
?>

Credits...

I found most of this out by trial and error searching the web. One major source of this information was this article.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

madmik3



United States United States

Member


Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
Questionany version in ASPX of PHP file ? Pinmemberkiquenet AE10:51 12 Dec '11  
QuestionNot ok for videos file upload PinmemberKKKT0:42 25 Jul '11  
GeneralHCG Ultra Pinmemberrmronimolic21:50 15 Jun '10  
QuestionDoes not work for me, where is my problem? PinmemberSiedlerchr3:33 13 Nov '09  
Generalcancel uploading Pinmemberdjdane8:16 13 May '09  
GeneralRe: cancel uploading Pinmemberkillix1:00 14 May '10  
GeneralThanks Pinmembershahid.here5:30 29 Apr '09  
GeneralNice but Pinmembersabrown1005:42 24 Dec '08  
QuestionSending POST request to aspx pages [modified] Pinmembercinni1:38 4 Dec '08  
Hi madmik3,
 
Really brilliant article. It helped me a lot to learn.
It works fine with PHP pages to upload files.
 
But i m facing problem to upload file to server by making a HTTPWebRequest to aspx pages. Please give me your suggestions on posting files to aspx pages.
 
Thanks in Advance
 
Lead a few, Follow one....Love all, Hate none....
modified on Friday, December 5, 2008 1:04 AM

GeneralUpload string + file + string PinmemberTravelster66112:25 19 Oct '08  
Generalform data and file upload Pinmembersyed wasif ali22:21 27 Jul '08  
Generalmore files not only one file to upload Pinmemberkappos3:23 12 Jun '08  
GeneralGracias excelente solucion PinmemberMember 31047895:29 10 Jun '08  
GeneralAs another commenter pointed out it's better to close the stream after you're done Pinmemberdolzenko9:01 1 Jun '08  
GeneralAny one know how to decode this type of post Pinmembersmesser12:19 3 Jan '08  
QuestiongetResponse like a web browser? PinmemberEnderwiggin11:44 14 Dec '07  
QuestionWhy it freezes sometimes at requestStream.Write(buffer, 0, bytesRead);? Pinmemberstaryon8:31 14 Nov '07  
GeneralThanks Pinmembercreatorulcom13:11 5 Oct '07  
QuestionWebException Pinmembertobi_z13:49 7 Sep '07  
QuestionHow to send a file a attachment PinmemberPhBV3:50 3 Sep '07  
GeneralParse error in PHP page PinmemberEdYellowMan5:20 22 May '07  
GeneralGreat Job! Pinmemberkkkwkk5:11 17 May '07  
GeneralGet error in Tomcat Pinmemberfranciscomesa5:00 28 Apr '07  
GeneralRe: Get error in Tomcat Pinmembercraighack218:36 4 Jun '09  
GeneralRe: Get error in Tomcat Pinmemberthikon_dew23:46 3 Jan '11  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web04 | 2.5.120210.1 | Last Updated 20 Oct 2004
Article Copyright 2004 by madmik3
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid