323324325326327328329330331332333
// Make the parent dirs if necessary GeneralFile parent = file.getParentFile(); if (!parent.exists()) { parent.mkdirs(); } //Create the corresponding file and open it file.createNewFile();
291292293294295296297298299300301