从属性文件获取值并使用批处理更新xml

时间:2016-08-24 23:05:41

标签: windows batch-file command-line windows-scripting

我正在尝试从属性文件中获取值并使用xml文件中的值。我可以使用以下代码从属性文件中获取值。

@echo off  
FOR /F "tokens=1,2 delims==" %%G IN (demo.properties) DO (set %%G=%%H)  
echo %filepath%

如果可以使用批处理更新XML中的文件路径,是否可以通知以下格式?

<Filesystem area="D:/oldpath"/>

<Filesystem area="C:/newpath"/>

0 个答案:

没有答案