简体   繁体   中英

Progress in uploading in ftp server c#

I ve got the following code which

foreach (string dir in dirs) { //dirs all files in directory
    try{
       // Get an instance of WebClient
       WebClient client = new System.Net.WebClient();
       // parse the ftp host and file into a uri path for the upload
       Uri uri = new Uri(m_FtpHost + new FileInfo(dir).Name);
       // set the username and password for the FTP server
       client.Credentials = new System.Net.NetworkCredential(m_FtpUsername, m_FtpPassword);
       // upload the file asynchronously, non-blocking.
       client.UploadFileAsync(uri, "STOR",dir);
       }
       catch(Exception e){

            print(e.Message);
       }
}

Can I retrieve back the progress of the upload? I have in the dirs 4-5 files. I want exact the progress (not the files uploaded/(total files))

EDIT: Thus the right approach is the following:

public int percentage;

try{
    // Get an instance of WebClient
    WebClient client = new System.Net.WebClient();
    // parse the ftp host and file into a uri path for the upload 
    Uri uri = new Uri(m_FtpHost + new FileInfo(dir).Name);
    // set the username and password for the FTP server                      
    client.Credentials = new System.Net.NetworkCredential(m_FtpUsername, m_FtpPassword);
    // upload the file asynchronously, non-blocking.
    client.UploadProgressChanged += WebClientUploadProgressChanged; 
    client.UploadFileCompleted += WebClientUploadCompleted;
    client.UploadFileAsync(uri, "STOR",dir);

}

void WebClientUploadProgressChanged(object sender, UploadProgressChangedEventArgs e)
{
    percentage =  e.ProgressPercentage;
}
void WebClientUploadCompleted(object sender, UploadFileCompletedEventArgs e)
{
    print( "Upload is finished. ");
}

I add this implementation to my code, however it seems that it doenst print anything in the console.

WebClient contains a dedicated event for this

 public event UploadProgressChangedEventHandler UploadProgressChanged 

https://msdn.microsoft.com/en-us/library/system.net.webclient.uploadprogresschanged(v=vs.110).aspx

EDIT : HttpWebRequest approach based on a google result :

        HttpWebRequest request = (HttpWebRequest)WebRequest.Create(uri);
        request.Method = "POST";
        request.ContentType = "text/plain";

        request.Timeout = -1; //Infinite wait for the response.

        // Get the file information object.
        FileInfo fileInfo = new FileInfo("C:\\Test\\uploadFile.dat");

        // Set the file content length.
        request.ContentLength = fileInfo.Length;
        // Get the number of segments the file will be uploaded to the stream.
        int segments = Convert.ToInt32(fileInfo.Length / (1024 * 4));

        // Get the source file stream.
        using (FileStream fileStream = fileInfo.OpenRead())
        {
            // Create 4KB buffer which is file page size.
            byte[] tempBuffer = new byte[1024 * 4];
            int bytesRead = 0;

            // Write the source data to the network stream.
            using (Stream requestStream = request.GetRequestStream())
            {
                // Loop till the file content is read completely.
                while ((bytesRead = fileStream.Read(tempBuffer, 0, tempBuffer.Length)) > 0)
                {
                    // Write the 4 KB data in the buffer to the network stream.
                    requestStream.Write(tempBuffer, 0, bytesRead);

                    // Update your progress bar here using segment count.
                }
            }
        }
        // Post the request and Get the response from the server.
        using (WebResponse response = request.GetResponse())
        {
            // Request is successfully posted to the server.
        }

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM