首页
Web开发
Windows程序
编程语言
数据库
移动开发
系统相关
微信
其他好文
会员
首页
>
Windows程序
> 详细
C# ftp 上传、下载、删除
时间:
2015-04-06 20:08:56
阅读:
174
评论:
0
收藏:
0
[点我收藏+]
标签:
C# ftp 上传、下载、删除
分类:
[ 11 ] Ftp
2012-11-02 10:36
3341人阅读
评论
(0)
收藏
举报
[csharp]
view plain
copy
print
?
public
class FtpHelper
{
public
static
readonly FtpHelper Instance =
new FtpHelper();
/// <summary>
/// 取得文件名
/// </summary>
/// <param name="ftpPath">ftp路径</param>
/// <returns></returns>
public
string[] GetFilePath(
string userId,
string pwd,
string ftpPath)
{
string[] downloadFiles;
StringBuilder result =
new StringBuilder();
FtpWebRequest reqFTP;
try
{
reqFTP = (FtpWebRequest)FtpWebRequest.Create(
new Uri(ftpPath));
reqFTP.UseBinary =
true;
reqFTP.Credentials =
new NetworkCredential(userId, pwd);
reqFTP.Method = WebRequestMethods.Ftp.ListDirectory;
reqFTP.UsePassive =
false;
WebResponse response = reqFTP.GetResponse();
StreamReader reader =
new StreamReader(response.GetResponseStream());
string line = reader.ReadLine();
while (line !=
null)
{
result.Append(line);
result.Append(
"\n");
line = reader.ReadLine();
}
result.Remove(result.ToString().LastIndexOf(
‘\n‘), 1);
reader.Close();
response.Close();
return result.ToString().Split(
‘\n‘);
}
catch (Exception ex)
{
downloadFiles =
null;
return downloadFiles;
}
}
//ftp的上传功能
public
void Upload(
string userId,
string pwd,
string filename,
string ftpPath)
{
FileInfo fileInf =
new FileInfo(filename);
FtpWebRequest reqFTP;
// 根据uri创建FtpWebRequest对象
reqFTP = (FtpWebRequest)FtpWebRequest.Create(
new Uri(ftpPath + fileInf.Name));
// ftp用户名和密码
reqFTP.Credentials =
new NetworkCredential(userId, pwd);
reqFTP.UsePassive =
false;
// 默认为true,连接不会被关闭
// 在一个命令之后被执行
reqFTP.KeepAlive =
false;
// 指定执行什么命令
reqFTP.Method = WebRequestMethods.Ftp.UploadFile;
// 指定数据传输类型
reqFTP.UseBinary =
true;
// 上传文件时通知服务器文件的大小
reqFTP.ContentLength = fileInf.Length;
// 缓冲大小设置为2kb
int buffLength = 2048;
byte[] buff =
new
byte[buffLength];
int contentLen;
// 打开一个文件流 (System.IO.FileStream) 去读上传的文件
FileStream fs = fileInf.OpenRead();
try
{
// 把上传的文件写入流
Stream strm = reqFTP.GetRequestStream();
// 每次读文件流的2kb
contentLen = fs.Read(buff, 0, buffLength);
// 流内容没有结束
while (contentLen != 0)
{
// 把内容从file stream 写入 upload stream
strm.Write(buff, 0, contentLen);
contentLen = fs.Read(buff, 0, buffLength);
}
// 关闭两个流
strm.Close();
fs.Close();
}
catch (Exception ex)
{
}
}
public
void Delete(
string userId,
string pwd,
string ftpPath,
string fileName)
{
FtpWebRequest reqFTP;
try
{
reqFTP = (FtpWebRequest)FtpWebRequest.Create(
new Uri(ftpPath + fileName));
reqFTP.Method = WebRequestMethods.Ftp.DeleteFile;
reqFTP.UseBinary =
true;
reqFTP.Credentials =
new NetworkCredential(userId, pwd);
reqFTP.UsePassive =
false;
FtpWebResponse listResponse = (FtpWebResponse)reqFTP.GetResponse();
string sStatus = listResponse.StatusDescription;
}
catch (Exception ex)
{
throw ex;
}
}
//从ftp服务器上下载文件的功能
public
void Download(
string userId,
string pwd,
string ftpPath,
string filePath,
string fileName)
{
FtpWebRequest reqFTP;
try
{
FileStream outputStream =
new FileStream(filePath +
"\\" + fileName, FileMode.Create);
reqFTP = (FtpWebRequest)FtpWebRequest.Create(
new Uri(ftpPath + fileName));
reqFTP.Method = WebRequestMethods.Ftp.DownloadFile;
reqFTP.UseBinary =
true;
reqFTP.Credentials =
new NetworkCredential(userId, pwd);
reqFTP.UsePassive =
false;
FtpWebResponse response = (FtpWebResponse)reqFTP.GetResponse();
Stream ftpStream = response.GetResponseStream();
long cl = response.ContentLength;
int bufferSize = 2048;
int readCount;
byte[] buffer =
new
byte[bufferSize];
readCount = ftpStream.Read(buffer, 0, bufferSize);
while (readCount > 0)
{
outputStream.Write(buffer, 0, readCount);
readCount = ftpStream.Read(buffer, 0, bufferSize);
}
ftpStream.Close();
outputStream.Close();
response.Close();
}
catch (Exception ex)
{
throw ex;
}
}
}
C# ftp 上传、下载、删除
标签:
原文地址:http://www.cnblogs.com/aaaaq/p/4396372.html
踩
(
0
)
赞
(
0
)
举报
评论
一句话评论(
0
)
登录后才能评论!
分享档案
更多>
2021年07月29日 (22)
2021年07月28日 (40)
2021年07月27日 (32)
2021年07月26日 (79)
2021年07月23日 (29)
2021年07月22日 (30)
2021年07月21日 (42)
2021年07月20日 (16)
2021年07月19日 (90)
2021年07月16日 (35)
周排行
更多
动态 WebApi 引擎使用教程(3行代码完成动态 WebApi 构建)
2021-07-28
windows 查看文件的md5/sha1/sha256
2021-07-28
git windows下换行符问题 LF与CRLF转换
2021-07-27
FileExistsError: [WinError 183] 当文件已存在时,无法创建该文件。
2021-07-26
K8S--可视化界面Kubernetes Dashboard(API Server方式)
2021-07-26
Redis安装成windows服务
2021-07-26
c#32位支持大内存(>2gb)
2021-07-23
【c#】Dev BarStaticItem问题汇总
2021-07-23
Exception: URL fetch failure on https://s3.amazonaws.com/text-datasets/nietzsche.txt: None -- [WinError 10054] 远程主机强迫关闭了一个现有的连接。
2021-07-22
WinForm使用DataGridView实现类似Excel表格的查找替换
2021-07-22
友情链接
兰亭集智
国之画
百度统计
站长统计
阿里云
chrome插件
新版天听网
关于我们
-
联系我们
-
留言反馈
© 2014
mamicode.com
版权所有 联系我们:gaon5@hotmail.com
迷上了代码!