Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public static String findcachedir()
- {
- boolean exists = (new File(System.getProperty("C:/") + "/TimoCache/")).exists();
- if (exists) {
- System.out.println("Directory exists");
- return System.getProperty("C:/") + "/TimoCache/";
- } else {
- File f = new File(System.getProperty("C:/") + "/TimoCache/");
- f.mkdir();
- System.out.println("Directory doesnt exist, making directory");
- return System.getProperty("C:/") + "/TimoCache/";
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment