aboutsummaryrefslogtreecommitdiff
path: root/src/filecounter.rs
diff options
context:
space:
mode:
authorNathan Reiner <nathan@nathanreiner.xyz>2023-07-06 14:20:14 +0200
committerNathan Reiner <nathan@nathanreiner.xyz>2023-07-06 14:20:14 +0200
commit9b4aa4e9643b0a5b4a554e455eac269a2472b590 (patch)
treecdab839b50a137db2a6df480a0f75f1f1385cb41 /src/filecounter.rs
parent8c3c8efa428200c67c1a6fa731faee55adf19678 (diff)
add some documentation to structs
Diffstat (limited to 'src/filecounter.rs')
-rw-r--r--src/filecounter.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/filecounter.rs b/src/filecounter.rs
index 1ed58e3..3532fa3 100644
--- a/src/filecounter.rs
+++ b/src/filecounter.rs
@@ -1,5 +1,7 @@
use walkdir::*;
+/// Function to count the number of entries in a directory.
+/// Is needed to get a progress.
pub fn filecount(path : &str) -> u64 {
let mut counter : u64 = 0;
for _ in WalkDir::new(path).into_iter().filter_map(|e| e.ok()) {