Sharpssh目录列表

时间:2010-06-21 20:15:16

标签: c# sftp sharpssh

我正在编写一个允许我从远程服务器上传和下载文件的应用程序。我使用sftp作为我的传输协议,我需要将所有文件和目录列入listview。我正在使用sharpssh进行sftp。有人能指出我正确的方向吗?

先谢谢你,

Bas van Ooyen

1 个答案:

答案 0 :(得分:13)

Sftp sftp = new Sftp(serverUri.Host, userName, password);

sftp.Connect();

//the foldername cannot be empty, or the listing will not show
ArrayList res = sftp.GetFileList("/foldername");
foreach (var item in res)
{
    if (item.ToString() != "." && item.ToString() != "..")
        Console.WriteLine(item.ToString());
}

sftp.Close();