diff options
author | Joe <rbo@gmx.us> | 2024-01-10 20:20:20 +0100 |
---|---|---|
committer | Joe <rbo@gmx.us> | 2024-01-10 20:20:20 +0100 |
commit | 9e3247465a6a246f4de17b0337ef1578e1c6e2be (patch) | |
tree | 50de717d746270288a23193769d17efde492b38a /c_ldirs.go | |
parent | good (diff) | |
download | hardflip-9e3247465a6a246f4de17b0337ef1578e1c6e2be.tar.gz hardflip-9e3247465a6a246f4de17b0337ef1578e1c6e2be.tar.bz2 hardflip-9e3247465a6a246f4de17b0337ef1578e1c6e2be.tar.xz hardflip-9e3247465a6a246f4de17b0337ef1578e1c6e2be.tar.zst hardflip-9e3247465a6a246f4de17b0337ef1578e1c6e2be.zip |
sick
Diffstat (limited to '')
-rw-r--r-- | c_ldirs.go | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -120,12 +120,16 @@ func (dir *DirsNode) count_hosts() int { } // return the number of hosts and subfolders of the dir -func (dir *DirsNode) count_elements() int { +func (dir *DirsNode) count_elements(skip_folds bool) int { items := 0 items += dir.count_hosts() for ptr := dir.next; ptr != nil && ptr.Depth > dir.Depth; ptr = ptr.next { - items += ptr.count_hosts() + 1 + if skip_folds == true && ptr.Folded == true { + items += 1 + } else { + items += ptr.count_hosts() + 1 + } } return items } |