From c6fe396b5648e1af0e452ec718567c35642daf52 Mon Sep 17 00:00:00 2001 From: Jiahao XU Date: Fri, 22 Jul 2022 19:07:40 +1000 Subject: [PATCH] Impl `ZipStreamFileMetadata::is_{dir, file}` Signed-off-by: Jiahao XU --- src/read/stream.rs | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/src/read/stream.rs b/src/read/stream.rs index 6c281edc..44208a7e 100644 --- a/src/read/stream.rs +++ b/src/read/stream.rs @@ -181,6 +181,20 @@ impl ZipStreamFileMetadata { self.0.enclosed_name() } + /// Returns whether the file is actually a directory + pub fn is_dir(&self) -> bool { + self.name() + .chars() + .rev() + .next() + .map_or(false, |c| c == '/' || c == '\\') + } + + /// Returns whether the file is a regular file + pub fn is_file(&self) -> bool { + !self.is_dir() + } + /// Get the comment of the file pub fn comment(&self) -> &str { &self.0.file_comment