我正在尝试将TreeView控件绑定到局域网中 ASUS-PC 的公用文件夹中。
但是,我无法弄清楚如何解析“ASUS-PC”目录,因为我无法从路径"\\\\ASUS-PC"
创建DirectoryInfo对象。
DirectoryInfo dir = new DirectoryInfo("\\\\ASUS-PC");
上面的一行会引发ArgumentException消息The UNC path should be of the form \\server\share.
下面的代码只会为root创建一个哑节点,因此我无法在该PC上显示所有公共文件夹。
如何提取路径“\\ ASUS-PC”的目录列表?
public void BindDirectoryToTreeView(string directoryPathToBind) {
if (!String.IsNullOrEmpty(directoryPathToBind) && Directory.Exists(directoryPathToBind)) {
treeView1.Nodes.Clear();
TreeNode rootNode = null;
char[] ps = treeView1.PathSeparator.ToCharArray();
string[] split = directoryPathToBind.Split(ps);
var folders = split.Where(str => !String.IsNullOrEmpty(str));
for (int i = 0; i < folders.Count(); i++) {
var folder = folders.ElementAt(i);
int index = directoryPathToBind.IndexOf(folder);
int length = index + folder.Length;
string path = directoryPathToBind.Substring(0, length);
if (rootNode != null) {
DirectoryInfo dir = new DirectoryInfo(path);
TreeNode node = new TreeNode(dir.Name, 0, 0);
RecurseFolders(dir, node);
} else {
//DirectoryInfo dir = new DirectoryInfo(path); <= Throws the Error
rootNode = new TreeNode(folder, 0, 0);
//RecurseFolders(dir, rootNode);
}
}
treeView1.Nodes.Add(rootNode);
if (0 < rootNode.Nodes.Count) {
rootNode.Expand();
}
}
}
我知道这可以做到。那么,我需要做什么呢?
答案 0 :(得分:5)
\\ASUS-PC
不是目录,这就是DirectoryInfo
抱怨的原因。你应该找到一种枚举股票的方法
答案 1 :(得分:4)
您要找的是a way to enumerate network shares on a given host。使用DirectoryInfo无法执行此操作。