Javier wrote:
Thanks for your reply but..How sould my application
know the file doesn�t exist ? Should check using
File.exists or should use a Properties method that I
unknow ?
We do not support optional files yet, you can use the following workaround:
File file = new File("a.ini");
file.createNewFile();
Configuration conf = new PropertiesConfiguration(file);
Emmanuel Bourg
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]