Click here to Skip to main content
15,879,326 members
Articles / Programming Languages / PHP
Tip/Trick

Upload a file using C# as client to a PHP server

Rate me:
Please Sign up or sign in to vote.
2.60/5 (4 votes)
7 Jun 2012CPOL 40.4K   2   6
Upload a file using c# as client to a PHP server

In my recent project I had to upload a file to a PHP server from a client application developed in C#. I found this method and I thought to share this with you.

First you have to use the System.net namespace. Then you have to create a webclient object. Using the webclient object you can upload your file to a PHP file in the server.

using System.Net;
WebClient cl = new WebClient();
try{

    cl.UploadFile("http://" + ip + "/test.php", file);
}
catch(Exception e)
{
    MessageBox.Show("Upload failed");
}

Now you can access the file from the PHP file. In the below example I create a folder in the server machine and move the file into the folder.

<?php
//check whether the folder the exists
if(!(file_exists('C:/Users/dhanu-sdu/Desktop/test')))
{
  //create the folder
  mkdir('C:/Users/dhanu-sdu/Desktop/test');
  //give permission to the folder
  chmod('C:/Users/dhanu-sdu/Desktop/test', 0777);
}

//check whether the file exists
if (file_exists('C:/Users/dhanu-sdu/Desktop/test/'. $_FILES["file"]["name"]))
{
  echo $_FILES["file"]["name"] . " already exists. ";
}
else
{
  //move the file into the new folder
  move_uploaded_file($_FILES["file"]["tmp_name"],'C:/Users/dhanu-sdu/Desktop/test/'. $_FILES["file"]["name"]);

}

?>

Also, you can download data from a PHP server and display it in a C# web browser by using the following code.

WebClient cl = new WebClient();
try{
    byte[] response = cl.DownloadData("http://" + ip +"/test.php");
    webBrowser1.DocumentText = System.Text.ASCIIEncoding.ASCII.GetString(response);
}
catch(Exception e)
{
    MessageBox.Show("Download failed");
}

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer
Sri Lanka Sri Lanka
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
QuestionHow to Add Custom Title Along With the File. Title Should Come From Client Pin
Froilan Asuncion11-Mar-22 2:57
Froilan Asuncion11-Mar-22 2:57 
QuestionNot an article Pin
Manas Bhardwaj6-Jun-12 22:36
professionalManas Bhardwaj6-Jun-12 22:36 
GeneralInteresting way to connect a desktop-based applications to a... Pin
innuendoreplay31-Jan-12 14:58
innuendoreplay31-Jan-12 14:58 
GeneralI used this code to upload a file to a php server and it wor... Pin
Dhanushka Madushan lk31-Jan-12 14:01
Dhanushka Madushan lk31-Jan-12 14:01 
GeneralReason for my vote of 1 WebClient should be placed in a usin... Pin
pietvredeveld31-Jan-12 8:02
pietvredeveld31-Jan-12 8:02 
GeneralReason for my vote of 1 title is unrelated, nothing new, upl... Pin
Selvin31-Jan-12 6:52
Selvin31-Jan-12 6:52 
Reason for my vote of 1
title is unrelated, nothing new, upload not working for my php file, ....

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

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