здесь у меня есть один файл bat test.bat ->
@echo off
echo this is piyush
pause
dir c:\
другой файл - это файл xml (создать файл .xml) для создания двух текстовых файлов. Мой вопрос заключается в том, как выполнить файл XML вbat файл для создания двух текстовых файлов.
Createfile.xml ->
<?xml version="1.0" ?>
<project name="piyush" default="Create_XMLfile">
<target name="Create_XMLfile">
<echo file="peak1.xml" message="This is creation of the peak1"/>
<echo file="peak1.xml" message="This is creation of the peak1"/>
</target>
</project>