gpt4 book ai didi

c# - Sharpssh 目录列表

转载 作者:太空狗 更新时间:2023-10-29 22:17:45 24 4
gpt4 key购买 nike

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

谢谢转发,

巴斯凡欧延

最佳答案

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();

关于c# - Sharpssh 目录列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3088190/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com