这里我有一个bat文件 test.bat - >
@echo off
echo this is piyush
pause
dir c:\
另一个文件是xml(创建文件.xml)文件,用于创建两个文本文件 我的问题是如何在bat文件中执行xml文件来创建两个文本文件。
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>