.Net 連線 FTP 列表、檔案大小、檔案下載 .Net 連線 FTP 列表、檔案大小、檔案下載
  .NET       ez      2012-06-26

本篇利用 FTP Class 連線到 FTP,並且將檔案列出來!

FtpConnection connection = new FtpConnection();
connection.MessageReceived += new FtpConnectionEventHandler(Ftp.connection_MessageReceived);
connection.Host = "ftp://xxx.xxx.xxx/";
connection.UserName = "xxx";
connection.Password = "xxxxxx";
connection.RemoteDirectory = "";
//列出資料夾內的檔案及資料夾
List<string> files = connection.ListDirectory();
foreach (string file in files)
{
          Response.Write(file + "<br>");
}

範例檔案:Ftp_List

結果截圖:


標籤:   .NET

我要留言