执行代码时
File path = new File("/data");
boolean isDir = path.isDirectory();
//isDir is true
String[] fList = path.list();
//fList == null!
在 Android 2.3 模拟器上,文件列表为空。这似乎与文档http://developer.android.com/reference/java/io/File.html#list () 中的声明相矛盾:
Returns null if this file is not a directory.
这里有什么问题?