下面是我的xml文件的结构:
<configuration>
<appSettings>
<add key="ProductVersion" value="5.5.5"/>
<add key="LogsDirectory" value="e:\\Logs"/>
</appSettings>
<configuration>
我正在尝试以下代码来获取 LogsDirectory 的值:
configurationFilePath = "e:\conf.xml"
Set xmlDoc = CreateObject("MSXML2.DomDocument.6.0")
xmlDoc.async = false
Call xmlDoc.load(configurationFilePath)
xpath1 = ".//configuration/appSettings/add[@key='LogsDirectory']/@value"
LogsDirectory = xmlDoc.selectSingleNode(xpath1)
但它作为所需的对象给出错误。
任何帮助高度赞赏。
谢谢