如何更新 Android 设备 sd 卡上存在的文件的日期和时间?我怎样才能以编程方式获得相同的结果?
提前致谢!!!
我想它会帮助你
File file = new File(filePath);
Date lastModDate = new Date(file.lastModified());
Log.i("File last modified @ : "+ lastModDate.toString());
lastModified
你可以从这里阅读更多
问候海克·纳哈佩蒂安
只需检查目录的存在..
public long lastModified ()
返回上次修改此文件的时间,以 1970 年 1 月 1 日午夜以来的毫秒数为单位。如果文件不存在,则返回 0。
所以只需检查您的文件是否存在..
代码:
从文件中获取上次修改日期,
File file = new File("Your file path");
Date lastModDate = new Date(file.lastModified());
Log.i("File last modified : "+ lastModDate.toString());
将上次修改日期设置为文件..
try{
File file = new File("/mnt/sdcard/temp.txt");
//print the original last modified date
SimpleDateFormat sdf = new SimpleDateFormat("MM/dd/yyyy");
Log.i("Original Last Modified Date : " , ""+sdf.format(file.lastModified()));
//set this date
String newLastModified = "01/06/2012";
//need convert the above date to milliseconds in long value
Date newDate = sdf.parse(newLastModified);
file.setLastModified(newDate.getTime());
//print the latest last modified date
Log.i("Lastest Last Modified Date : ", ""+sdf.format(file.lastModified()));
}catch(ParseException e){
e.printStackTrace();
}
我希望这能帮到您。