復(fù)制代碼 代碼如下:
using System;
using System.Collections.Generic;
using System.Text;
using System.Net;
using System.IO;
namespace ftponload
{
class Program
{
static void Main(string[] args)
{
//上傳文件的方法
onload("D://outPut.txt");
//下載文件的方法
fload();
}
public static void onload(string file)
{
//構(gòu)造一個web服務(wù)器的請求對象
FtpWebRequest ftp;
//實例化一個文件對象
FileInfo f = new FileInfo(file);
ftp = (FtpWebRequest)FtpWebRequest.Create(new Uri("ftp://192.168.0.150/" + f.Name));
//創(chuàng)建用戶名和密碼
ftp.Credentials = new NetworkCredential("123", "123");
ftp.KeepAlive = false;
ftp.Method = WebRequestMethods.Ftp.UploadFile;
ftp.UseBinary = true;
ftp.ContentLength = f.Length;
int buffLength = 20480;
byte[] buff = new byte[buffLength];
int contentLen;
try
{
//獲得請求對象的輸入流
FileStream fs = f.OpenRead();
Stream sw = ftp.GetRequestStream();
contentLen = fs.Read(buff, 0, buffLength);
while (contentLen != 0)
{
sw.Write(buff, 0, contentLen);
contentLen = fs.Read(buff, 0, buffLength);
}
sw.Close();
fs.Close();
}
catch (Exception e)
{
Console.WriteLine(e.Message);
}
}
public static void fload()
{
FtpWebRequest ftp;
ftp = (FtpWebRequest)FtpWebRequest.Create(new Uri("ftp://192.168.0.6/連接到你指定的文件"));
//指定用戶名和密碼
ftp.Credentials = new NetworkCredential("123", "123456");
WebResponse wr = ftp.GetResponse();
StreamReader sr = new StreamReader(wr.GetResponseStream(),System.Text.Encoding.Default);
string s = sr.ReadLine();
while(s.Equals(""))
{
s = sr.ReadLine();
}
}
}
}
您可能感興趣的文章:- c# FTP上傳文件實例代碼(簡易版)
- C#利用SFTP實現(xiàn)上傳下載
- C# 中實現(xiàn)ftp 圖片上傳功能(多快好省)
- C#開發(fā)教程之FTP上傳下載功能詳解
- C# 實現(xiàn)FTP客戶端的小例子
- C#開發(fā)windows服務(wù)實現(xiàn)自動從FTP服務(wù)器下載文件
- C#基于FTP協(xié)議的簡易軟件自動升級程序
- C#實現(xiàn)FTP客戶端的案例
- FtpHelper實現(xiàn)ftp服務(wù)器文件讀寫操作(C#)
- C#操作ftp類完整實例
- C# 實現(xiàn)FTP上傳資料的示例