Avoiding hidden directories
This commit is contained in:
parent
7f046cfdaa
commit
259a9dd525
1 changed files with 3 additions and 0 deletions
|
|
@ -155,6 +155,9 @@ public class DirectoryEntry extends Entry {
|
||||||
if (f.isDirectory()) {
|
if (f.isDirectory()) {
|
||||||
if ("CVS".equals(name)) {
|
if ("CVS".equals(name)) {
|
||||||
continue;
|
continue;
|
||||||
|
}
|
||||||
|
if (f.isHidden()) {
|
||||||
|
continue;
|
||||||
}
|
}
|
||||||
generateDirectoryProperties(props, f);
|
generateDirectoryProperties(props, f);
|
||||||
continue;
|
continue;
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue