Java bietet sehr gute Möglichkeiten zum File Handling. Mit der Methode „File.mkdirs“ ist es möglich, einen ganzen Verzeichnispfad zu erstellen:
// create path if not exits
File myPath = new File(MYPATH);
if (!myPath.isDirectory()) {
if (!myPath.mkdirs()) {
return „cantCreateDirecorty“;
}
}