如何:将FTP服务器项加载到comboBox中

时间:2014-07-22 15:17:47

标签: c# combobox ftp

如何:将FTP服务器项加载到comboBox

我有一个带有一些元素的FTP服务器。现在,我想将文件夹“Texte”的所有html元素加载到我的组合框中。

参见结构:XYZ.bplaced.net/Test/Texte

  • 的Hello.html
  • World.html

这是我到目前为止所拥有的。

string pathTexts = @"C:\Users\Name\Desktop\Testumgebung\Texte";

不幸的是,我只能从计算机上的文件夹加载。

if (true == CheckPath())
        {
            foreach (string s in Directory.GetFiles(pathTexts, "*.html"))
            {
                list.Add(Path.GetFileNameWithoutExtension(s));
            }
        }
        comboBox_DataPool.ItemsSource = list;

请帮帮我!

1 个答案:

答案 0 :(得分:1)

要通过FTP获取文件,您无法使用Directory.GetFiles()。您必须使用此MSDN example中显示的FtpWebRequest