pro_java_server thread: RE: pro_java_server digest: March 22, 2001
Hi, about checking if a file exists use
File file = new File("some.dat");
if(file.exists()){
//
}
Checking a directory is the same
File file = new File("c:/windows");
not sure about solaris.
hope that helps.
Harley.
|





