150151152153154155156157158159160
*/ private void ensurePathForFileExists(File aFile) { File tPath = new File(aFile.getParent()); if(!tPath.exists()) { tPath.mkdirs(); } } /** * Returns the path to the new file.