怎么通过ftp获取网站源码

怎么通过ftp获取网站源码,第1张

先安装FTP软件,推荐flashfxp或cuteftp

然后你需要FTP的IP、端口、FTP账户、FTP密码

再通过FTP软件链接到服务器,然后就可以下载网站源码了

自己把这些方法写到一个类里.我分二次回答,一次...您的回答内容多于10000字,请删减! string ftpServerIP

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")

}

}


欢迎分享,转载请注明来源:夏雨云

原文地址:https://www.xiayuyun.com/zonghe/192991.html

(0)
打赏 微信扫一扫微信扫一扫 支付宝扫一扫支付宝扫一扫
上一篇 2023-03-31
下一篇2023-03-31

发表评论

登录后才能评论

评论列表(0条)

    保存