Android BasicFileAttributes 的使用&收获
为了获取文件夹创建时间,了解到了BasicFileAttributes接口,但是很奇怪,我使用后获取的结果跟官网提供的使用结果不一样。在这做个记录。 官方介绍:https://developer.android.google.cn/reference/java/nio/file/attribute/BasicFileAttributes
中文翻译: 上面是官方提供的使用结果,以下是我的 使用代码 :
public final SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy年M月d日 hh:mm:ss");
BasicFileAttributes attrs = Files.readAttributes(Paths.get(f.getAbsolutePath()),BasicFileAttributes.class);
Date date = new Date(attrs.lastAccessTime().toMillis());
Log.d(TAG, "call: 文件名 : "+fileBean.getDocumentName()+" - 创建时间 : "+ simpleDateFormat.format(date));
运行结果如下: 按照官方文档,lastAccessTime()应该返回的是最后访问的时间,但是在这里却返回了创建文件夹的时间
那么我使用creationTime()呢?还会返回创建时间吗? 并没有,结果返回的是我最后往文件夹里放文件的时间,即上一次编辑文件夹的时间,和lastModifiedTime()运行结果是一样的。
所以我认为 lastAccessTime才是返回文件夹创建时间,而不是返回上次访问的时间。 但是又很好奇为啥官方这么解释,而我用起来却不是官方的结果。。。。 希望有大佬能解答我的疑惑鸭,谢谢~
|