ディレクトリがない場合だけ新規作成するメソッド追加 WIP

This commit is contained in:
r-ca 2024-01-09 13:49:46 +09:00
parent 1af344a6d3
commit e055f8fe9e
No known key found for this signature in database
GPG Key ID: 6A72911AC73464A9
2 changed files with 13 additions and 0 deletions

View File

@ -6,6 +6,7 @@ import org.w3c.dom.Document;
import java.io.File;
import java.io.IOException;
import java.lang.reflect.Field;
import java.nio.file.Path;
import java.util.List;
@ -35,6 +36,8 @@ public interface FileManager {
FileManager createFile(String fileName) throws IOException;
FileManager createDirectory() throws IOException;
FileManager createDirectory(String directoryName) throws IOException;
FileManager createDirectoryIfNotExist() throws IOException;
FileManager createDirectoryIfNotExist(String directoryName) throws IOException;
// Save
// XML

View File

@ -203,6 +203,16 @@ public class FileManagerImpl implements FileManager {
return this.createDirectory();
}
@Override
public FileManager createDirectoryIfNotExist() throws IOException {
return null;
}
@Override
public FileManager createDirectoryIfNotExist(String directoryName) throws IOException {
return null;
}
// Internal
private void saveXmlInternal(Document document) throws IOException {
try {