string ftpUserID
string ftpPassword
FtpWebRequest reqFTP
private void Connect(String path)//连接ftp
{
// 根据uri创建FtpWebRequest对象
reqFTP = (FtpWebRequest)FtpWebRequest.Create(new Uri(path))
// 指定数据传输类型
reqFTP.UseBinary = true
// ftp用户名和密码
reqFTP.Credentials = new NetworkCredential(ftpUserID, ftpPassword)
}
public FtpUpDown(string ftpServerIP, string ftpUserID, string ftpPassword)
{
this.ftpServerIP = ftpServerIP
this.ftpUserID = ftpUserID
this.ftpPassword = ftpPassword
}
//都调用这个
//从ftp服务器上获得文件列表
private string[] GetFileList(string path, string WRMethods)
{
string[] downloadFiles
StringBuilder result = new StringBuilder()
try
{
Connect(path)
reqFTP.Method = WRMethods
WebResponse response = reqFTP.GetResponse()
StreamReader reader =
new StreamReader(response.GetResponseStream(), System.Text.Encoding.Default)//中文文件名
string line = reader.ReadLine()
while (line != null)
{
result.Append(line)
result.Append("\n")
line = reader.ReadLine()
}
// to remove the trailing '\n'
result.Remove(result.ToString().LastIndexOf('\n'), 1)
reader.Close()
response.Close()
return result.ToString().Split('\n')
}
catch (Exception ex)
{
System.Windows.Forms.MessageBox.Show(ex.Message)
downloadFiles = null
return downloadFiles
}
}
//从ftp服务器上获得文件列表
public string[] GetFileList(string path)
{
return GetFileList("ftp://" + ftpServerIP + "/" + path,
WebRequestMethods.Ftp.ListDirectory)
}
//从ftp服务器上获得文件列表
public string[] GetFileList()
{
return GetFileList("ftp://" + ftpServerIP + "/",
WebRequestMethods.Ftp.ListDirectory)
}
//从ftp服务器上载文件的功能
public void Upload(string filename)
{
FileInfo fileInf = new FileInfo(filename)
string uri = "ftp://" + ftpServerIP + "/" + fileInf.Name
Connect(uri)//连接
// 默认为true,连接不会被关闭
// 在一个命令之后被执行
reqFTP.KeepAlive = false
// 指定执行什么命令
reqFTP.Method = WebRequestMethods.Ftp.UploadFile
// 上传文件时通知服务器文件的大小
reqFTP.ContentLength = fileInf.Length
// 缓冲大小设置为kb
int buffLength = 2048
byte[] buff = new byte[buffLength]
int contentLen
// 打开一个文件流(System.IO.FileStream) 去读上传的文件
FileStream fs = fileInf.OpenRead()
try
{
// 把上传的文件写入流
Stream strm = reqFTP.GetRequestStream()
// 每次读文件流的kb
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)
{
MessageBox.Show(ex.Message, "Upload Error")
}
}
FTP文件上传 (“adress.txt”, FTP取现行目录 () + “/adress.txt”, )注意1,本地路径,如果是相对路径的话,就要将文件和易语言程序放在一个目录下,如果是绝对路径的话,注意要写全文件格式比如"D:\ABC\1.TXT"
注意2,FTP文件路径需要跟上文件名,不能写"/123/wwwroot/",要讲完整的路径+文件名写出来,推荐写法FTP取现行目录 () + “/1.txt"
欢迎分享,转载请注明来源:夏雨云
评论列表(0条)