here's a simple function that checks to see if a file exists
--------------------------------------------------
public boolean exists(String filename) {
File file = new File(filename);
return file.exists();
}
--------------------------------------------------
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment