This commit is contained in:
r-ca 2024-01-09 15:11:15 +09:00
parent 27aa6a2f15
commit c05d45afdd
No known key found for this signature in database
GPG Key ID: 6A72911AC73464A9

View File

@ -174,8 +174,10 @@ public class FileManagerImpl implements FileManager {
public FileManager createFile() throws IOException { public FileManager createFile() throws IOException {
try { try {
if (this.autoCreateParent) { if (this.autoCreateParent) {
if (!this.path.getParent().toFile().exists()) {
Files.createDirectories(this.path.getParent()); Files.createDirectories(this.path.getParent());
} }
}
Files.createFile(this.path); Files.createFile(this.path);
} catch (Exception e) { } catch (Exception e) {
logger.error("createFile", e.getMessage()); logger.error("createFile", e.getMessage());