続行する前に、特定のファイルが存在するかどうかを確認する条件があります(./logs/error.log
)。見つからない場合は作成したいと思います。しかし、
File tmp = new File("logs/error.log");
tmp.createNewFile();
logs/
それが存在しない場合も作成しますか?
回答:
Java8スタイル
Path path = Paths.get("logs/error.log");
Files.createDirectories(path.getParent());
ファイルに書き込むには
Files.write(path, "Log log".getBytes());
読むには
System.out.println(Files.readAllLines(path));
完全な例
public class CreateFolderAndWrite {
public static void main(String[] args) {
try {
Path path = Paths.get("logs/error.log");
Files.createDirectories(path.getParent());
Files.write(path, "Log log".getBytes());
System.out.println(Files.readAllLines(path));
} catch (IOException e) {
e.printStackTrace();
}
}
}
StringUtils.touch(/path/filename.ext)
存在しない場合は、ディレクトリとファイルも作成します(> = 1.3)。
FileUtils.touch(new File(file_path))