blob: 6fefc0227044752bedc5657a3a454252e1521009 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
package cgeo.geocaching.utils;
import org.apache.commons.lang3.ArrayUtils;
import android.os.Handler;
import android.os.Message;
import java.io.File;
import java.util.List;
/**
* Utiliy class for files
*
* @author rsudev
*
*/
public class FileUtils {
public static void listDir(List<File> result, File directory, FileSelector chooser, Handler feedBackHandler) {
if (directory == null || !directory.isDirectory() || !directory.canRead()
|| result == null
|| chooser == null) {
return;
}
final File[] files = directory.listFiles();
if (ArrayUtils.isNotEmpty(files)) {
for (File file : files) {
if (chooser.shouldEnd()) {
return;
}
if (!file.canRead()) {
continue;
}
String name = file.getName();
if (file.isFile()) {
if (chooser.isSelected(file)) {
result.add(file); // add file to list
}
} else if (file.isDirectory()) {
if (name.charAt(0) == '.') {
continue; // skip hidden directories
}
if (name.length() > 16) {
name = name.substring(0, 14) + '…';
}
if (feedBackHandler != null) {
feedBackHandler.sendMessage(Message.obtain(feedBackHandler, 0, name));
}
listDir(result, file, chooser, feedBackHandler); // go deeper
}
}
}
}
public static abstract class FileSelector {
public abstract boolean isSelected(File file);
public abstract boolean shouldEnd();
}
}
|