我正在 C: 驱动器文件夹中创建一个名为 abc 的 dat 文件,如下所示,现在我的文件每天生成现在假设如果我的文件是今天生成的,那么 tommrow 它也将照常生成但是当 tommrow 它生成时我必须确保删除较早的文件,因为该文件夹中的空间有限,并且每次都需要执行此检查才能从该文件夹中删除前一天的文件,请告知如何实现此目的..
File file = new File(FilePath + getFileName()); //filepath is being passes through //ioc //and filename through a method
if (!file.exists()) {
file.createNewFile();
}
FileOutputStream fileOutput = new FileOutputStream(
file);
BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(
fileOutput));