如何:将FTP服务器项加载到comboBox
我有一个带有一些元素的FTP服务器。现在,我想将文件夹“Texte”的所有html元素加载到我的组合框中。
参见结构:XYZ.bplaced.net/Test/Texte
这是我到目前为止所拥有的。
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;
请帮帮我!