I want to get the file properties in assets folder on android,But it is unlike general operation use some kinds of methods to get,anybody can help me to get the file propert
You can get last modified date with lastModified().
File file = new File();
long lastModified = file.lastModified();
But lastModified()
returns unix time. You can convert it with format.
Date date = new Date(lastModified);
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss:SS");
String formattedDate = sdf.format(date);