mirror of
https://github.com/apache/cordova-android.git
synced 2025-01-19 23:42:53 +08:00
Merge branch 'master' of https://git-wip-us.apache.org/repos/asf/incubator-cordova-android
This commit is contained in:
commit
ee07cbecba
@ -298,7 +298,9 @@ public class FileUtils extends Plugin {
|
|||||||
if (fp.isDirectory()) {
|
if (fp.isDirectory()) {
|
||||||
File[] files = fp.listFiles();
|
File[] files = fp.listFiles();
|
||||||
for (int i = 0; i < files.length; i++) {
|
for (int i = 0; i < files.length; i++) {
|
||||||
entries.put(getEntry(files[i]));
|
if (files[i].canRead()) {
|
||||||
|
entries.put(getEntry(files[i]));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user