I want to check the Folder Existance before creating the new one. For that which method I need to use :
File folder = new File(PATH);
there are two method for checking the same
1) folder.getAbsoluteFile().exists()
OR
2) folder.exists()
Which one to use?
Thanks for looking here.