The directory have to exists, the javadoc only talks about the file.
Form source :

public static void writeStringToFile(File file,
           String data, String encoding) throws IOException {
       OutputStream out = new FileOutputStream(file);
       try {
           IOUtils.write(data, out, encoding);
       } finally {
           IOUtils.closeQuietly(out);
       }
   }

Cimballi

So, is there anyone on this list that can/will provide a definitive answer
to my original question?  Should I be asking it elsewhere?  Thanks.

--
Jamie Bisotti



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to