gpt4 book ai didi

c# - 连接到 FTP 并在 .txt 中搜索文件

转载 作者:行者123 更新时间:2023-11-30 22:11:52 31 4
gpt4 key购买 nike

我正在尝试制作一个程序,让您检查该 ftp 服务器上特定文件扩展名的可用性,然后将包含文件的文件分类出来。

到目前为止,这是我尝试这样做的方式:

string path;
path = "ftp://" + textBox1.Text + "/";
string[] files = System.IO.Directory.GetFiles(path, "*.txt", SearchOption.AllDirectories);

最佳答案

FtpWebRequest ftpRequest = 
(FtpWebRequest)WebRequest.Create("ftp://ftp.freebsd.org/pub/FreeBSD/");

ftpRequest.Credentials = new NetworkCredential("anonymous", "k3rnel31@k.com");
ftpRequest.Method = WebRequestMethods.Ftp.ListDirectory;
FtpWebResponse response = (FtpWebResponse)ftpRequest.GetResponse();
StreamReader streamReader = new StreamReader(response.GetResponseStream());

List<string> filestxt = new List<string>();

string line = streamReader.ReadLine();
while (!string.IsNullOrEmpty(line))
{
if (line.Contains(".txt"))
{
MessageBox.Show(line);
line = streamReader.ReadLine();
filestxt.Add(line);
}
else
{
line = streamReader.ReadLine();
}
}

streamReader.Close();

关于c# - 连接到 FTP 并在 .txt 中搜索文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20033784/

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