我是靠谱客的博主 明理向日葵,最近开发中收集的这篇文章主要介绍C# FTP上传测试代码,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

仅供参考。

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Net;
using System.IO;

namespace FTPTest
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void Form1_Load(object sender, EventArgs e)
        {

        }

        private void button1_Click(object sender, EventArgs e)
        {
            try
            {
                string serverName = this.textBoxServerName.Text;
                string userName = this.textBoxUser.Text;
                string password = this.textBoxPassword.Text;

                this.textBoxLogo.Text += "正在获取目录rn";
                this.textBoxLogo.Text += "服务器名: " + serverName + "rn";
                this.textBoxLogo.Text +="用户名: " + userName + "rn";
                this.textBoxLogo.Text += "密码: " + password + "rn";

                StringBuilder result = new StringBuilder();
                FtpWebRequest ftp;
                ftp = (FtpWebRequest)FtpWebRequest.Create(new Uri("ftp://" + serverName));
                ftp.Credentials = new NetworkCredential(userName, password);
                ftp.Method = WebRequestMethods.Ftp.ListDirectoryDetails;
                ftp.UsePassive = false;
                
                WebResponse response = ftp.GetResponse();
                StreamReader reader = new StreamReader(response.GetResponseStream(), Encoding.Default);

                String line = reader.ReadLine();
                while (!String.IsNullOrEmpty(line))
                {
                    line = new System.Text.RegularExpressions.Regex("[\s]+").Replace(line, " ");
                    string[] lineInfo = line.Split(' ');
                    this.textBoxLogo.Text += lineInfo[lineInfo.Length - 1] + "rn";
                    line = reader.ReadLine();
                }
                reader.Close();
                response.Close();

                this.textBoxLogo.Text += "获取目录结束rn";
            }
            catch (Exception ex)
            {
                this.textBoxLogo.Text += ex.Message + "rn";
                this.textBoxLogo.Text += "获取目录失败" + "rn";
                MessageBox.Show(ex.Message);
            }
        }

        private void textBoxServerName_TextChanged(object sender, EventArgs e)
        {
   
        }

        private void button2_Click(object sender, EventArgs e)
        {
            try
            {
                string serverName = this.textBoxServerName.Text;
                string userName = this.textBoxUser.Text;
                string password = this.textBoxPassword.Text;
                string upFile = this.textBoxUpFile.Text;

                this.textBoxLogo.Text += "正在上传文件rn";
                this.textBoxLogo.Text += "服务器名: " + serverName + "rn";
                this.textBoxLogo.Text += "用户名: " + userName + "rn";
                this.textBoxLogo.Text += "密码: " + password + "rn";
                this.textBoxLogo.Text += "上传文件:" + upFile + "rn";

                FileInfo fileInf = new FileInfo(upFile);
                String uri = serverName + "/" + fileInf.Name;

                FtpWebRequest reqFTP;
                reqFTP = (FtpWebRequest)FtpWebRequest.Create(new Uri("ftp://" + uri));
                reqFTP.Credentials = new NetworkCredential(userName, password);
                reqFTP.KeepAlive = false;
                reqFTP.Method = WebRequestMethods.Ftp.UploadFile;
                reqFTP.UseBinary = true;
                reqFTP.UsePassive = false;
                reqFTP.ContentLength = fileInf.Length;
                int buffLength = 2048;
                byte[] buff = new byte[buffLength];
                int contentLen;
                FileStream fs = fileInf.OpenRead();

                Stream strm = reqFTP.GetRequestStream();
                contentLen = fs.Read(buff, 0, buffLength);
                while (contentLen != 0)
                {
                    strm.Write(buff, 0, contentLen);
                    contentLen = fs.Read(buff, 0, buffLength);
                }
                strm.Close();
                fs.Close();

                this.textBoxLogo.Text += "上传文件结束rn";
            }
            catch (Exception ex)
            {
                this.textBoxLogo.Text += ex.Message + "rn";
                this.textBoxLogo.Text += "上传文件失败" + "rn";
                MessageBox.Show(ex.Message);
            }

        }
    }
}
 

最后

以上就是明理向日葵为你收集整理的C# FTP上传测试代码的全部内容,希望文章能够帮你解决C# FTP上传测试代码所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(60)

评论列表共有 0 条评论

立即
投稿
返回
顶部