我创建了一个类似注册表结构的xml..我可以通过节点名称遍历节点..这里我不能通过属性值遍历节点路径...我在下面给出xml..
<Computer>
<HIVE Name="HKEY_CUREENT_USER">
<Elements>
<element Name="(Default)" Type="REG_SZ" Data="(value not set)" />
<element Name="SoftwareMicrosoftVisualStudio9.0ResourceEditorsPerformanceLoggingEnabled" Type="REG_SZ" Data="" />
</Elements>
<KEYS>
<Key Name="Network">
<Elements>
<element Name="(Default)" Type="REG_SZ" Data="(value not set)" />
</Elements>
</Key>
</KEYS>
</HIVE>
</Computer>
我想要路径访问“HKEY_CUREENT_USER\Network” ...给我一个 C++ 代码解决方案(使用 MSXML)