I'm trying to get a value from a property file and use the value in a xml file. I'm able get the value from property file with the below code.
@echo off
FOR /F "tokens=1,2 delims==" %%G IN (demo.properties) DO (set %%G=%%H)
echo %filepath%
Can you let me know if it is possible to update the file path in the XML using batch if it is in the below format?
<Filesystem area="D:/oldpath"/>
<Filesystem area="C:/newpath"/>