You may want to check the Java API. Here is an example that creates a directory if it does not exist. String dirName = "C:\\my documents\\Junk"; File dir = new File(dirName); if(!dir.exists()) dir.mkdir();
Bosun
Bosun (SCJP, SCWCD).
So much trouble in the world -- Bob Marley