gpt4 book ai didi

android - 从目录中删除早于给定时间的文件

转载 作者:塔克拉玛干 更新时间:2023-11-02 19:11:46 24 4
gpt4 key购买 nike

我已经创建了文件列表来存储在我的应用程序中打开一次后的一些属性。每次打开文件时,这些属性都会更改,因此我将它们删除并重新创建。

我已经使用

创建了所有文件文件
File file =new File(getExternalFilesDir(null),
currentFileId+"");
if(file.exists()){
//I store the required attributes here and delete them
file.delete();
}else{
file.createNewFile();
}

我想在这里删除所有超过一周的文件,因为不再需要这些存储的属性。这样做的合适方法是什么?

最佳答案

这应该可以解决问题。它将创建一个 7 天前的日历实例,并比较文件的修改日期是否在该时间之前。如果是,则表示该文件早于 7 天。

    if(file.exists()){
Calendar time = Calendar.getInstance();
time.add(Calendar.DAY_OF_YEAR,-7);
//I store the required attributes here and delete them
Date lastModified = new Date(file.lastModified());
if(lastModified.before(time.getTime())) {
//file is older than a week
file.delete();
}
}else{
file.createNewFile();
}

如果你想获取目录中的所有文件,你可以使用它,然后迭代结果并比较每个文件。

public static ArrayList<File> getAllFilesInDir(File dir) {
if (dir == null)
return null;

ArrayList<File> files = new ArrayList<File>();

Stack<File> dirlist = new Stack<File>();
dirlist.clear();
dirlist.push(dir);

while (!dirlist.isEmpty()) {
File dirCurrent = dirlist.pop();

File[] fileList = dirCurrent.listFiles();
for (File aFileList : fileList) {
if (aFileList.isDirectory())
dirlist.push(aFileList);
else
files.add(aFileList);
}
}

return files;
}

关于android - 从目录中删除早于给定时间的文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25807359/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com