文章详情

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

请输入下面的图形验证码

提交验证

短信预约提醒成功

C#怎么实现FTP上传文件

2023-06-30 02:25

关注

本文小编为大家详细介绍“C#怎么实现FTP上传文件”,内容详细,步骤清晰,细节处理妥当,希望这篇“C#怎么实现FTP上传文件”文章能帮助大家解决疑惑,下面跟着小编的思路慢慢深入,一起来学习新知识吧。

通过用FTP进行上传文件,首先要实现建立FTP连接,一般建立FTP连接,需要知道FTP配置有关的信息。一般要在Bean中建立一个ServiceFileInfo.cs文件进行记录,一般需要FTP地址、登录用户名和登录密码。然后通过其他页面进行访问读取。代码样式如下:

class ServiceFileInfo    {        // service1        public static string txtFilePath = @"ftp://12.128.128.01/FileName/";        //userid & password        public static string txtUID = "username";        public static string txtPWD = "password";    }

通过主方法读取Bean文件下面的的ServiceFileInfo.cs文件的信息,去实现建立FTP连接。这里还需要清楚的知道你上传文件的路径(Path)和文件名称(FileName)。根据这些信息主方法去调用写着Bean中的另外一个ftpOperation.cs 文件(这个.cs文件中主要写一些关于FTP的操作方法),进行FTP访问操作。

ExecutionResult exeRes = this.ftpOperation.UploadFile(textFilePath, txtUID, txtPWD, Path + "/" + FileName + ".txt");//.txt为文件的后缀名
public ExecutionResult UploadFile(string vIMSPath, string vUID, string vPassword, string vLocalPath)        {            ExecutionResult result = new ExecutionResult();            result = connectState(vIMSPath, vUID, vPassword, vLocalPath);//调用下面代码方法            if (result.Status)            {                File.Delete(vLocalPath);            }            return result;        }

connectState()方法

public static ExecutionResult connectState(string vIMSPath, string vUID, string vPassword, string fileName)        {            string operater = "";            bool Flag = false;            ExecutionResult result;            result = new ExecutionResult();            lock (lockObj)            {                try                {                    operater = "Connet to FTP";                    FTPOperation ftp = new FTPOperation(new Uri(vIMSPath), vUID, vPassword);                    operater = "Upload file";                    Flag = ftp.UploadFile(fileName, Path.GetFileName(fileName), true);                    if (Flag)                    {                        result.Status = true;                        result.Message = "Send to server OK";                    }                }                catch (Exception ex)                {                    result.Status = false;                    result.Anything = "Mail";                    result.Message = operater + ":" + ex.Message;                }            }            return result;        }
public bool UploadFile(string LocalFullPath, string RemoteFileName, bool OverWriteRemoteFile)        {            bool result;            try            {                bool flag = !this.IsValidFileChars(RemoteFileName) || !this.IsValidFileChars(Path.GetFileName(LocalFullPath)) || !this.IsValidPathChars(Path.GetDirectoryName(LocalFullPath));                if (flag)                {                    throw new Exception("非法文件名或目录名!");                }                bool flag2 = File.Exists(LocalFullPath);                if (!flag2)                {                    throw new Exception("本地文件不存在!");                }                FileStream fileStream = new FileStream(LocalFullPath, FileMode.Open, FileAccess.Read);                byte[] array = new byte[fileStream.Length];                fileStream.Read(array, 0, (int)fileStream.Length);                fileStream.Close();                result = this.UploadFile(array, RemoteFileName, OverWriteRemoteFile);            }            catch (Exception ex)            {                this.ErrorMsg = ex.ToString();                throw ex;            }            return result;        }public bool UploadFile(byte[] FileBytes, string RemoteFileName)        {            bool flag = !this.IsValidFileChars(RemoteFileName);            if (flag)            {                throw new Exception("非法文件名或目录名!");            }            return this.UploadFile(FileBytes, RemoteFileName, false);        }public bool UploadFile(byte[] FileBytes, string RemoteFileName, bool OverWriteRemoteFile)        {            bool result;            try            {                bool flag = !this.IsValidFileChars(RemoteFileName);                if (flag)                {                    throw new Exception("非法文件名!");                }                bool flag2 = !OverWriteRemoteFile && this.FileExist(RemoteFileName);                if (flag2)                {                    throw new Exception("FTP服务上面已经存在同名文件!");                }                this.Response = this.Open(new Uri(this.Uri.ToString() + RemoteFileName), "STOR");                Stream requestStream = this.Request.GetRequestStream();                MemoryStream memoryStream = new MemoryStream(FileBytes);                byte[] array = new byte[1024];                int num = 0;                for (;;)                {                    int num2 = memoryStream.Read(array, 0, array.Length);                    bool flag3 = num2 == 0;                    if (flag3)                    {                        break;                    }                    num += num2;                    requestStream.Write(array, 0, num2);                }                requestStream.Close();                this.Response = (FtpWebResponse)this.Request.GetResponse();                memoryStream.Close();                memoryStream.Dispose();                FileBytes = null;                result = true;            }            catch (Exception ex)            {                this.ErrorMsg = ex.ToString();                throw ex;            }            return result;        }

读到这里,这篇“C#怎么实现FTP上传文件”文章已经介绍完毕,想要掌握这篇文章的知识点还需要大家自己动手实践使用过才能领会,如果想了解更多相关内容的文章,欢迎关注编程网行业资讯频道。

阅读原文内容投诉

免责声明:

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

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

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯