当前位置:
首页 > temp > 简明python教程 >
-
C#实现FTP上传资料
1.通过用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"; }
2.通过主方法读取Bean文件下面的的ServiceFileInfo.cs文件的信息,去实现建立FTP连接。这里还需要清楚的知道你上传文件的路径(Path)和文件名称(FileName)。根据这些信息主方法去调用写着Bean中的另外一个ftpOperation.cs 文件(这个.cs文件中主要写一些关于FTP的操作方法),进行FTP访问操作。
- 主方法调用FTP操作代码
ExecutionResult exeRes = this.ftpOperation.UploadFile(textFilePath, txtUID, txtPWD, Path + "/" + FileName + ".txt");//.txt为文件的后缀名
- Bean文件中ftpOperation.cs文件关于FTP操作的方法
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; }
- UploadFile()方法
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; }
栏目列表
最新更新
nodejs爬虫
Python正则表达式完全指南
爬取豆瓣Top250图书数据
shp 地图文件批量添加字段
爬虫小试牛刀(爬取学校通知公告)
【python基础】函数-初识函数
【python基础】函数-返回值
HTTP请求:requests模块基础使用必知必会
Python初学者友好丨详解参数传递类型
如何有效管理爬虫流量?
2个场景实例讲解GaussDB(DWS)基表统计信息估
常用的 SQL Server 关键字及其含义
动手分析SQL Server中的事务中使用的锁
openGauss内核分析:SQL by pass & 经典执行
一招教你如何高效批量导入与更新数据
天天写SQL,这些神奇的特性你知道吗?
openGauss内核分析:执行计划生成
[IM002]Navicat ODBC驱动器管理器 未发现数据
初入Sql Server 之 存储过程的简单使用
SQL Server -- 解决存储过程传入参数作为s
关于JS定时器的整理
JS中使用Promise.all控制所有的异步请求都完
js中字符串的方法
import-local执行流程与node模块路径解析流程
检测数据类型的四种方法
js中数组的方法,32种方法
前端操作方法
数据类型
window.localStorage.setItem 和 localStorage.setIte
如何完美解决前端数字计算精度丢失与数