如何更新Android设备SD卡上的文件的更新日期和时间? 我如何以编程方式获得相同的内容?
提前致谢!!!
答案 0 :(得分:2)
我认为它会帮助你
File file = new File(filePath);
Date lastModDate = new Date(file.lastModified());
Log.i("File last modified @ : "+ lastModDate.toString());
您可以从here
了解有关lastModified
的更多信息
关心Hayk Nahapetyan
答案 1 :(得分:0)
只需检查目录的存在..
public long lastModified ()
返回上次修改此文件的时间,以1970年1月1日午夜以来的毫秒数为单位。 如果文件不存在,则返回0.
因此,只需检查您的文件是否存在..
<强> CODE:强>
要从文件中获取上次修改日期,
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();
}
我希望这会对你有所帮助。