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“;
}
}

0 Antworten bis hierher ↓
Bis jetzt noch kein Kommentar ... Bring die Sache ins Rollen, und füll das untere Formular aus.