我的编程空间,编程开发者的网络收藏夹
学习永远不晚

C#怎么使用FluentFTP实现FTP上传下载功能

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

C#怎么使用FluentFTP实现FTP上传下载功能

这篇文章主要介绍“C#怎么使用FluentFTP实现FTP上传下载功能”的相关知识,小编通过实际案例向大家展示操作过程,操作方法简单快捷,实用性强,希望这篇“C#怎么使用FluentFTP实现FTP上传下载功能”文章能帮助大家解决问题。

FTP基础知识

文件传输协议(File Transfer Protocol,FTP)是用于在网络上进行文件传输的一套标准协议,它工作在 OSI 模型的第七层, TCP 模型的第四层, 即应用层, 使用 TCP 传输而不是 UDP, 客户在和服务器建立连接前要经过一个“三次握手”的过程, 保证客户与服务器之间的连接是可靠的, 而且是面向连接, 为数据传输提供可靠保证。FTP允许用户以文件操作的方式(如文件的增、删、改、查、传送等)与另一主机相互通信。然而, 用户并不真正登录到自己想要存取的计算机上面而成为完全用户, 可用FTP程序访问远程资源, 实现用户往返传输文件、目录管理以及访问电子邮件等等, 即使双方计算机可能配有不同的操作系统和文件存储方式。

FTP环境搭建

在windows操作系统中,FTP可以通过(Internet Inforamtion Services, IIS)管理器进行创建,创建成功后即可进行查看,如下所示:

C#怎么使用FluentFTP实现FTP上传下载功能

FluentFTP安装

FluentFTP是一款基于.Net的FTP和FTPS的客户端动态库,操作简单便捷。

C#怎么使用FluentFTP实现FTP上传下载功能

首先创建基于.Net Framework 4.6.1的winform应用程序,然后通过Nuget包管理器进行安装,如下所示:

C#怎么使用FluentFTP实现FTP上传下载功能

示例演示

主要实现基于FTP的上传,下载,浏览等功能,如下所示:

C#怎么使用FluentFTP实现FTP上传下载功能

进入文件夹及右键下载,如下所示:

C#怎么使用FluentFTP实现FTP上传下载功能

示例源码

FtpHelper类源码,封装了FTP文件的检索,上传,下载等功能,如下所示:

using System;using System.Collections.Generic;using System.IO;using System.Linq;using System.Net;using System.Text;using System.Threading;using System.Threading.Tasks;using FluentFTP;namespace DemoFtp{    public class FtpHelper    {        #region 属性与构造函数        /// <summary>        /// IP地址        /// </summary>        public string IpAddr { get; set; }        /// <summary>        /// 相对路径        /// </summary>        public string RelatePath { get; set; }        /// <summary>        /// 端口号        /// </summary>        public int Port { get; set; }        /// <summary>        /// 用户名        /// </summary>        public string UserName { get; set; }        /// <summary>        /// 密码        /// </summary>        public string Password { get; set; }        public FtpHelper()        {        }        public FtpHelper(string ipAddr, int port, string userName, string password, string relatePath)        {            this.IpAddr = ipAddr;            this.Port = port;            this.UserName = userName;            this.Password = password;            this.RelatePath = relatePath;        }        #endregion        #region 方法        public FtpListItem[] ListDir() {            FtpListItem[] lists;            using (var ftpClient = new FtpClient(this.IpAddr, this.UserName, this.Password, this.Port))            {                ftpClient.Connect();                ftpClient.SetWorkingDirectory(this.RelatePath);                lists = ftpClient.GetListing();            }            return lists;        }        public void UpLoad(string dir, string file, out bool isOk)        {            isOk = false;            FileInfo fi = new FileInfo(file);            using (FileStream fs = fi.OpenRead())            {                //long length = fs.Length;                using (var ftpClient = new FtpClient(this.IpAddr, this.UserName, this.Password, this.Port))                {                    ftpClient.Connect();                    ftpClient.SetWorkingDirectory(this.RelatePath);                    string remotePath = dir + "/" + Path.GetFileName(file);                    var ftpRemodeExistsMode = file.EndsWith(".txt") ? FtpRemoteExists.Overwrite : FtpRemoteExists.Skip;                    FtpStatus status = ftpClient.UploadStream(fs, remotePath, ftpRemodeExistsMode, true);                    isOk = status == FtpStatus.Success;                }            }        }        /// <summary>        /// 上传多个文件        /// </summary>        /// <param name="files"></param>        /// <param name="isOk"></param>        public void UpLoad(string dir, string[] files, out bool isOk)        {            isOk = false;            if (CheckDirIsExists(dir))            {                foreach (var file in files)                {                    UpLoad(dir, file, out isOk);                }            }        }        private bool CheckDirIsExists(string dir)        {            bool flag = false;            using (var ftpClient = new FtpClient(this.IpAddr, this.UserName, this.Password, this.Port))            {                ftpClient.Connect();                ftpClient.SetWorkingDirectory(this.RelatePath);                flag = ftpClient.DirectoryExists(dir);                if (!flag)                {                    flag = ftpClient.CreateDirectory(dir);                }            }            return flag;        }        /// <summary>        /// 下载ftp        /// </summary>        /// <param name="localAddress"></param>        /// <param name="remoteAddress"></param>        /// <returns></returns>        public bool DownloadFile(string localAddress, string remoteAddress)        {            using (var ftpClient = new FtpClient(this.IpAddr, this.UserName, this.Password, this.Port))            {                ftpClient.SetWorkingDirectory("/");                ftpClient.Connect();                if (ftpClient.DownloadFile(localAddress, remoteAddress) == FtpStatus.Success)                {                    return true;                }                return false;            }        }        #endregion    }}

每一个FTP文件或文件夹,由一个自定义用户控件【PictureBox+Label+ContextMenu】表示,这样便于处理与显示:

using DemoFtp.Properties;using FluentFTP;using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.IO;using System.Linq;using System.Text;using System.Threading.Tasks;using System.Windows.Forms;namespace DemoFtp{    public partial class FtpElementControl : UserControl    {        public Action<FtpListItem> SubFolderClick;        public Action<FtpListItem> DownLoadClick;        private FtpListItem ftpListItem;        public FtpElementControl(FtpListItem ftpListItem)        {            InitializeComponent();            this.ftpListItem = ftpListItem;        }        public FtpElementControl()        {            InitializeComponent();        }        public void InitControl()        {            if (ftpListItem.Type == FtpObjectType.Directory)            {                this.pbIcon.Image = Resources.folder.ToBitmap();            }            else if (ftpListItem.Type == FtpObjectType.File)            {                var name = ftpListItem.Name;                var ext = Path.GetExtension(name).ToLower().Substring(1);                if (ext == "png" || ext == "jpeg" || ext == "jpg" || ext == "bmp" || ext == "gif")                {                    this.pbIcon.Image = Resources.pictures.ToBitmap();                }                else if (ext == "doc" || ext == "docx")                {                    this.pbIcon.Image = Resources.doc.ToBitmap();                }                else if (ext == "exe")                {                    this.pbIcon.Image = Resources.setup.ToBitmap();                }                else                {                    this.pbIcon.Image = Resources.file;                }            }            else            {                this.pbIcon.Image = Resources.file;            }            this.lblName.Text = ftpListItem.Name;        }        private void FtpElementControl_Load(object sender, EventArgs e)        {        }        /// <summary>        /// 子菜单下载功能        /// </summary>        /// <param name="sender"></param>        /// <param name="e"></param>        private void menu_ItemClicked(object sender, ToolStripItemClickedEventArgs e)        {            this.DownLoadClick?.Invoke(ftpListItem);        }        /// <summary>        /// 双击打开        /// </summary>        /// <param name="sender"></param>        /// <param name="e"></param>        private void pbIcon_DoubleClick(object sender, EventArgs e)        {            this.SubFolderClick?.Invoke(ftpListItem);        }    }}

主页面由一系列用户操作框和按钮组成,完成对FTP的基本操作,如下所示:

using FluentFTP;using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.IO;using System.Linq;using System.Text;using System.Threading.Tasks;using System.Windows.Forms;namespace DemoFtp{    public partial class MainForm : Form    {        private FtpHelper ftpHelper;        public MainForm()        {            InitializeComponent();        }        private void btnLogin_Click(object sender, EventArgs e)        {            var url = txtFtpUrl.Text;            var userName = txtUserName.Text;            var password = txtPassword.Text;            var port = txtPort.Text;            if (this.lblRelatePath.Text != "/")            {                this.lblRelatePath.Text = "/";            }            var relatePath = this.lblRelatePath.Text;            if (string.IsNullOrEmpty(url) || string.IsNullOrEmpty(userName) || string.IsNullOrEmpty(password) || string.IsNullOrEmpty(port))            {                MessageBox.Show("路径和账号密码不可为空");                return;            }            if (ftpHelper == null)            {                ftpHelper = new FtpHelper(url, int.Parse(port), userName, password, relatePath);            }            ListDir();        }        public void SubFolder(FtpListItem ftpListItem)        {            if (ftpListItem.Type == FtpObjectType.Directory)            {                var fullName = ftpListItem.FullName;                ftpHelper.RelatePath = fullName;                ListDir();                this.lblRelatePath.Text = fullName;            }        }        private void Download(FtpListItem ftpListItem) {            var fullName=ftpListItem.FullName;            var fileName = Path.GetFileName(fullName);            SaveFileDialog sfd = new SaveFileDialog();            sfd.FileName = fileName;            sfd.Title = "不载";            sfd.Filter = "所有文档|*.*";            if (DialogResult.OK == sfd.ShowDialog()) {                ftpHelper.DownloadFile(sfd.FileName, fullName);            }        }        private void ListDir()        {            this.ftpContainer.Controls.Clear();            var ftpListItems = this.ftpHelper.ListDir();            if (ftpListItems != null && ftpListItems.Length > 0)            {                foreach (var ftpListItem in ftpListItems)                {                    FtpElementControl ftpControl = new FtpElementControl(ftpListItem);                    ftpControl.InitControl();                    ftpControl.DownLoadClick += Download;                    ftpControl.SubFolderClick += SubFolder;                    this.ftpContainer.Controls.Add(ftpControl);                }            }        }        private void btnUpload_Click(object sender, EventArgs e)        {            OpenFileDialog ofd = new OpenFileDialog();            ofd.Filter = "所有文件|*.*";            ofd.Title = "请选择需要上传的文件";            if (DialogResult.OK == ofd.ShowDialog()) {                var localFile=ofd.FileName;                ftpHelper.UpLoad(this.lblRelatePath.Text, localFile, out bool isOk);                if (isOk) {                    ListDir();                }            }        }        private void pbReturn_Click(object sender, EventArgs e)        {            var relativePath=this.lblRelatePath.Text;            if (relativePath == "/") {                return;            }            relativePath = relativePath.Substring(0, relativePath.LastIndexOf("/")+1);            ftpHelper.RelatePath=relativePath;            ListDir();            this.lblRelatePath.Text = relativePath;        }    }}

关于“C#怎么使用FluentFTP实现FTP上传下载功能”的内容就介绍到这里了,感谢大家的阅读。如果想了解更多行业相关的知识,可以关注编程网行业资讯频道,小编每天都会为大家更新不同的知识点。

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

C#怎么使用FluentFTP实现FTP上传下载功能

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

C#怎么使用FluentFTP实现FTP上传下载功能

这篇文章主要介绍“C#怎么使用FluentFTP实现FTP上传下载功能”的相关知识,小编通过实际案例向大家展示操作过程,操作方法简单快捷,实用性强,希望这篇“C#怎么使用FluentFTP实现FTP上传下载功能”文章能帮助大家解决问题。FT
2023-07-05

C#利用FluentFTP实现FTP上传下载功能详解

FTP作为日常工作学习中,非常重要的一个文件传输存储空间,想必大家都非常的熟悉了,那么如何快速的实现文件的上传下载功能呢,本文以一个简单的小例子,简述如何通过FluentFTP实现文件的上传和下载功能
2023-02-21

Java怎么实现FTP的上传与下载功能

这篇文章主要讲解了“Java怎么实现FTP的上传与下载功能”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“Java怎么实现FTP的上传与下载功能”吧!JAVA操作FTP服务器,只需要创建一个F
2023-06-29

Java操作FTP实现上传下载功能

这篇文章主要为大家详细介绍了Java如何通过操作FTP实现上传下载的功能,文中的示例代码讲解详细,对我们学习Java有一定帮助,需要的可以参考一下
2022-11-13

java实现ftp文件上传下载功能

本文实例为大家分享了ftp实现文件上传下载的具体代码,供大家参考,具体内容如下package getUrlPic;import java.io.ByteArrayInputStream;import java.io.IOException;
2023-05-31

shell脚本实现ftp上传下载文件功能

前段时间工作中需要将经过我司平台某些信息核验数据提取后上传到客户的FTP服务器上,以便于他们进行相关的信息比对核验。由于包含这些信息的主机只有4台,采取的策略是将生成的4个文件汇集到一个主机上,然后iHBkwirJm在这台主机上将文件上传的
2022-06-04

怎么在shell中实现一个ftp上传下载文件功能

怎么在shell中实现一个ftp上传下载文件功能?针对这个问题,这篇文章详细介绍了相对应的分析和解答,希望可以帮助更多想解决这个问题的小伙伴找到更简单易行的方法。1,建立主机A到其他三台主机之间的信任关系,以便于远程拷贝文件#生成主机A的本
2023-06-09

Android中FTP上传、下载的功能实现(含进度)

Android中使用的FTP上传、下载,含有进度。代码部分主要分为三个文件:MainActivity,FTP,ProgressInputStream1. MainActivitypackage com.ftp; import java.
2022-06-06

Android中怎么利用FTP实现多线程断点续传下载上传功能

Android中怎么利用FTP实现多线程断点续传下载上传功能,很多新手对此不是很清楚,为了帮助大家解决这个难题,下面小编将为大家详细讲解,有这方面需求的人可以来学习下,希望你能有所收获。FTP下载原理FTP单线程断点续传FTP和传统的HTT
2023-05-30

nodejs怎么连接ftp实现上传下载

这篇文章主要介绍“nodejs怎么连接ftp实现上传下载”的相关知识,小编通过实际案例向大家展示操作过程,操作方法简单快捷,实用性强,希望这篇“nodejs怎么连接ftp实现上传下载”文章能帮助大家解决问题。依赖//ftp 模块是目前找到的
2023-07-06

使用springboot怎么样实现一个文件上传下载功能

这期内容当中小编将会给大家带来有关使用springboot怎么样实现一个文件上传下载功能,文章内容丰富且以专业的角度为大家分析和叙述,阅读完这篇文章希望大家可以有所收获。1.文件上传(前端页面):
2023-05-31

SpringBoot怎么实现文件上传与下载功能

这篇“SpringBoot怎么实现文件上传与下载功能”文章的知识点大部分人都不太理解,所以小编给大家总结了以下内容,内容详细,步骤清晰,具有一定的借鉴价值,希望大家阅读完这篇文章能有所收获,下面我们一起来看看这篇“SpringBoot怎么实
2023-07-06

Python如何使用sftp实现上传和下载功能

这篇文章主要介绍了Python如何使用sftp实现上传和下载功能,具有一定借鉴价值,感兴趣的朋友可以参考下,希望大家阅读完这篇文章之后大有收获,下面让小编带着大家一起了解一下。python可以做什么Python是一种编程语言,内置了许多有效
2023-06-14

C#如何使用WebClient实现上传下载

本篇内容主要讲解“C#如何使用WebClient实现上传下载”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“C#如何使用WebClient实现上传下载”吧!一、概述System.Net.WebCl
2023-06-30

Python使用sftp实现上传和下载功能(实例代码)

在Python中可以使用paramiko模块中的sftp登陆远程主机,实现上传和下载功能。 1.功能实现 根据输入参数判断是文件还是目录,进行上传和下载 本地参数local需要与远程参数remote类型一致,文件以文件名结尾,目录以结尾 上
2022-06-04

利用servlet怎么实现一个文件上传下载功能

利用servlet怎么实现一个文件上传下载功能?相信很多没有经验的人对此束手无策,为此本文总结了问题出现的原因和解决方法,通过这篇文章希望你能解决这个问题。一、准备工作:  1.1 文件上传插件:uploadify;  1.2 文件上传所需
2023-05-31

编程热搜

  • Python 学习之路 - Python
    一、安装Python34Windows在Python官网(https://www.python.org/downloads/)下载安装包并安装。Python的默认安装路径是:C:\Python34配置环境变量:【右键计算机】--》【属性】-
    Python 学习之路 - Python
  • chatgpt的中文全称是什么
    chatgpt的中文全称是生成型预训练变换模型。ChatGPT是什么ChatGPT是美国人工智能研究实验室OpenAI开发的一种全新聊天机器人模型,它能够通过学习和理解人类的语言来进行对话,还能根据聊天的上下文进行互动,并协助人类完成一系列
    chatgpt的中文全称是什么
  • C/C++中extern函数使用详解
  • C/C++可变参数的使用
    可变参数的使用方法远远不止以下几种,不过在C,C++中使用可变参数时要小心,在使用printf()等函数时传入的参数个数一定不能比前面的格式化字符串中的’%’符号个数少,否则会产生访问越界,运气不好的话还会导致程序崩溃
    C/C++可变参数的使用
  • css样式文件该放在哪里
  • php中数组下标必须是连续的吗
  • Python 3 教程
    Python 3 教程 Python 的 3.0 版本,常被称为 Python 3000,或简称 Py3k。相对于 Python 的早期版本,这是一个较大的升级。为了不带入过多的累赘,Python 3.0 在设计的时候没有考虑向下兼容。 Python
    Python 3 教程
  • Python pip包管理
    一、前言    在Python中, 安装第三方模块是通过 setuptools 这个工具完成的。 Python有两个封装了 setuptools的包管理工具: easy_install  和  pip , 目前官方推荐使用 pip。    
    Python pip包管理
  • ubuntu如何重新编译内核
  • 改善Java代码之慎用java动态编译

目录