谢谢.
对于像“myfolder”这样的私人文件夹,还有一个Context.getDir()函数.
使用相应的File对象,您可以枚举文件.
File dirFiles = mContext.getFilesDir(); for (String strFile : dirFiles.list()) { // strFile is the file name }