在我的应用程序中,我需要使用提供的 xml 文件在我的本地计算机上创建一个文件夹结构,如 "* C:\Laptop1\folder\" 、 "C:\Laptop2\folder* "。现在 XML 文件具有我所追求的文件名。
我的xml代码:
<?xml version="1.0" encoding="utf-8" ?>
<Proj>
<MachineIP>
<Machine>
<Name>Laptop 1</Name>
<Path>C:\ZipFiles\Laptop1\folder\</Path>
</Machine>
<Machine>
<Name>Laptop 2</Name>
<Path>C:\ZipFiles\Laptop2\folder\</Path>
</Machine>
<Machine>
<Name>Laptop 3</Name>
<Path>C:\ZipFiles\Laptop2\folder\</Path>
</Machine>
<Machine>
<Name>Laptop 4</Name>
<Path>C:\ZipFiles\Laptop2\folder\</Path>
</Machine>
<Machine>
<Name>Laptop 5</Name>
<Path>C:\ZipFiles\Laptop2\folder\</Path>
</Machine>
<Machine>
<Name>Laptop 6</Name>
<Path>C:\ZipFiles\Laptop2\folder\</Path>
</Machine>
</MachineIP>
</Proj>
我感兴趣的只是知道如何获取机器/名称/到目前为止我不知道如何选择特定标签。任何人都知道如何选择机器标签中的每个名称。我有一个 300mb 的文件要过滤掉。
我的方法是获取 Machine 标签中的每个 Name 并将其存储在一个字符串中,然后使用该字符串创建结构。但是我卡住了请帮助...
到目前为止我的源代码:
//doc created
XmlDocument doc = new XmlDocument();
//loading file:
filePath = System.IO.Directory.GetCurrentDirectory();
filePath = System.IO.Path.Combine(filePath + "\\", "MyConfig.xml");
try
{
doc.Load(filePath);
}
catch (Exception ex)
{
MessageBox.Show("Config File Missing: " + ex.Message, "Config File Error",
MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
Application.Exit();
}
//fetch data:
String[] MachineName = XMLData("PROJ/MachineIP/Machine", "Name");
String[] MachinePath = XMLData("PROJ/MachineIP/Machine", "Path");
//function XMLData():
string[] temp;
XmlNodeList nodeList = doc.SelectNodes(MainNode);
int i = 0;
temp = new string[nodeList.Count];
foreach (XmlNode node in nodeList)
{
temp.SetValue(node.SelectSingleNode(SubNode).InnerText, i);
i++;
}
return temp;
谢谢, HRG