1
0
mirror of https://github.com/mitb-archive/filebot synced 2024-12-23 08:18:52 -05:00

* improved default behaviour if called without arguments

This commit is contained in:
Reinhard Pointner 2015-03-25 04:35:13 +00:00
parent 0b895172c3
commit 1ce8ab15b7

View File

@ -161,7 +161,7 @@ public class ArgumentBean {
if (recursive) {
files.addAll(listFiles(file));
} else {
files.addAll(getChildren(file));
files.addAll(filter(getChildren(file, FILES), NOT_HIDDEN));
}
} else {
files.add(file);