C#實(shí)現(xiàn)FTP上傳文件的方法
1.通過用FTP進(jìn)行上傳文件,首先要實(shí)現(xiàn)建立FTP連接,一般建立FTP連接,需要知道FTP配置有關(guān)的信息。一般要在Bean中建立一個(gè)ServiceFileInfo.cs文件進(jìn)行記錄,一般需要FTP地址、登錄用戶名和登錄密碼。然后通過其他頁面進(jìn)行訪問讀取。代碼樣式如下:
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文件的信息,去實(shí)現(xiàn)建立FTP連接。這里還需要清楚的知道你上傳文件的路徑(Path)和文件名稱(FileName)。根據(jù)這些信息主方法去調(diào)用寫著Bean中的另外一個(gè)ftpOperation.cs 文件(這個(gè).cs文件中主要寫一些關(guān)于FTP的操作方法),進(jìn)行FTP訪問操作。
- 主方法調(diào)用FTP操作代碼
ExecutionResult exeRes = this.ftpOperation.UploadFile(textFilePath, txtUID, txtPWD, Path + "/" + FileName + ".txt");//.txt為文件的后綴名
- Bean文件中ftpOperation.cs文件關(guān)于FTP操作的方法
public ExecutionResult UploadFile(string vIMSPath, string vUID, string vPassword, string vLocalPath)
{
ExecutionResult result = new ExecutionResult();
result = connectState(vIMSPath, vUID, vPassword, vLocalPath);//調(diào)用下面代碼方法
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服務(wù)上面已經(jīng)存在同名文件!");
}
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;
}到此這篇關(guān)于C#實(shí)現(xiàn)FTP上傳文件的文章就介紹到這了。希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
相關(guān)文章
C# BinaryReader實(shí)現(xiàn)讀取二進(jìn)制文件
在 C# 以二進(jìn)制形式讀取數(shù)據(jù)時(shí)使用的是 BinaryReader 類。本文介紹了C# BinaryReader實(shí)現(xiàn)讀取二進(jìn)制文件,感興趣的可以了解一下2021-06-06
Unity技術(shù)手冊之Button按鈕使用實(shí)例詳解
這篇文章主要為大家介紹了Unity技術(shù)手冊之Button按鈕使用實(shí)例詳解,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進(jìn)步,早日升職加薪2022-11-11
C#生成帶二維碼的專屬微信公眾號推廣海報(bào)實(shí)例代碼
這篇文章主要給大家介紹了關(guān)于利用C#如何生成帶二維碼的專屬微信公眾號推廣海報(bào)的相關(guān)資料,文中通過示例代碼介紹的非常詳細(xì),對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們一起來看看吧2018-12-12
C#實(shí)現(xiàn)對用戶輸入數(shù)據(jù)進(jìn)行校驗(yàn)的類實(shí)例
這篇文章主要介紹了C#實(shí)現(xiàn)對用戶輸入數(shù)據(jù)進(jìn)行校驗(yàn)的類,實(shí)例分析了C#針對各種用戶輸入數(shù)據(jù)的常用校驗(yàn)技巧,非常具有實(shí)用價(jià)值,需要的朋友可以參考下2015-03-03

