如何从SD卡获取文件的最后修改日期

时间:2017-07-04 08:01:33

标签: android android-file

/storage/emulated/0/Android/data/tjvideohighlight.techjini.com.tjvideohighlight/filesMoment_01.mp4这是我的档案目录

public String getFilecreationDate(String fileName) {
        String filePath = context.getExternalFilesDir(null) + fileName;

        File file = new File(filePath);
        SimpleDateFormat sdf = new SimpleDateFormat("MM/dd/yyyy HH:mm:ss");

        return sdf.format(file.lastModified());
    }

这是我用来获取文件修改日期的代码,但每次我都会收到 01/01/1970 08:00:00 对于每个文件,而我今天保存的所有文件都可以任何一个请告诉我如何获取文件最后修改在哪里做错了。

0 个答案:

没有答案