How to create an xml file during installation of application
My objective is I want to check whether my xml file is exist or not during my installation, if it exist,nothing to happen.But if it doesn't existthen my application should create an xml file automatically i.e I have to install onc:\test\config\bin folder.
so i want my xml file should be created insideconfig folder.(i.e. one folder back then the installed folder)
or
Is it possible to create a complete new xml file inside that config folder.So that i can insert to this later.
My xml file is as follows:-Myxml.xml
<?xml version="1.0" encoding="ISO-8859-1" standalone="no"?>
<config date="14.08.2007 11:04:26" name="varioMultiConvert">
<!--This is an automatically generated File. DO NOT EDIT!-->
<options section="Conversion">
<option name="PollingTime" type="int" value="3" />
<option name="RecordNumber" type="int" value="120" />
<option name="LogDir" type="string" value="D:\variobill\Produktion_Stw_Schwerte\log" />
<option name="ErrorDir" type="string" value="D:\variobill\Produktion_Stw_Schwerte\error" />
<option name="FinishedDir" type="string" value="D:\variobill\Produktion_Stw_Schwerte\finished" />
<option name="LogFileInterval" type="int" value="1" />
</options>
</config>
Please help me quickly, it's urgent.

