我是Android NDK的新手。这是一个获取按修改日期排序的文件列表的函数。我在这个论坛上搜遍过,没有运气。
任何人都可以给我一些提示吗?
由于
答案 0 :(得分:1)
这应该是c ++特定的问题,请尝试使用:
struct stat attrib;
stat(filePath, &attrib);
char date[10];
strftime(date, 20, "%d-%m-%y", localtime(&(attrib.st_ctime)));
printf("The file %s was last modified at %s\n", filePath, date);
然后您只需按&(attrib.st_ctime)
EDIT for second question:
使用std::sort
并告诉它使用自定义比较对象,例如here。