我正在寻找一个允许选择多个具有相似名称的文件的脚本。我有 10 个文件:
- 你好.myapp-1.apk
- 你好.myapp-2.apk
- 你好.myapp-3.apk
- 你好.myapp-4.apk
- 其他
- ...
- ...
- ...
- ... 10....
我想选择从 hello.myapp-1.apk 到 hello.myapp-4.apk 的文件。有可能只用这样的一行代码吗?
File su6 = new File("/dir/app/hello.myapp-*.apk");
File dir = new File("/dir/app/");
File [] files = dir.listFiles(new FilenameFilter() {
@Override
public boolean accept(File dir, String name) {
return name.startsWith("hello.myapp-") && name.endsWith(".apk");
}
});
for (File file : files) {
//do stuff with file
}
你可以这样做:
File[] result = f.listFiles(new FilenameFilter() {
public boolean accept(File dir, String name) {
return name.startsWith("hello.myapp-");//or use contains, regex/matcher etc
}
});
for (int i=0; i<5; i++)
File su6 = new File("/dir/app/hello.myapp-" + i + ".apk");