1 | if (isIncluded(currentelement)↵ | | 1 | if (isIncluded(currentelement)↵
|
2 | && currentelement.length() > 0) {↵ | | 2 | && currentelement.length() > 0) {↵
|
3 | accountForIncludedDir(currentelement, myfile, true);↵ | | 3 | accountForIncludedDir(currentelement, myfile, true);↵
|
4 | } else {↵ | | 4 | } else {↵
|
5 | if (currentelement.length() > 0) {↵ | | 5 | if (currentelement.length() > 0) {↵
|
6 | if (currentelement.charAt(currentelement↵ | | 6 | if (currentelement.charAt(currentelement↵
|
7 | .length() - 1)↵ | | 7 | .length() - 1)↵
|
8 | != File.separatorChar) {↵ | | 8 | != File.separatorChar) {↵
|
9 | currentelement =↵ | | 9 | currentelement =↵
|
10 | currentelement + File.separatorChar;↵ | | 10 | currentelement + File.separatorChar;↵
|
11 | }↵ | | 11 | ↵
|
| | | 12 | }↵
|
12 | }↵ | | 13 | }↵
|
13 | scandir(myfile, currentelement, true);↵ | | 14 | scandir(myfile.getAbsolutePath(), currentelement, true);↵
|
14 | } | | 15 | }
|