From 09676e7bee7bd82a081691eea2321b372b355c89 Mon Sep 17 00:00:00 2001 From: Chris Hennick <4961925+Pr0methean@users.noreply.github.com> Date: Wed, 15 May 2024 16:20:50 -0700 Subject: [PATCH] chore: Add missing `ZipFileData::is_dir()` method --- src/types.rs | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/types.rs b/src/types.rs index ab8d22da..4dc66386 100644 --- a/src/types.rs +++ b/src/types.rs @@ -362,6 +362,14 @@ pub struct ZipFileData { } impl ZipFileData { + #[allow(dead_code)] + pub fn is_dir(&self) -> bool { + self.file_name + .chars() + .next_back() + .map_or(false, |c| c == '/' || c == '\\') + } + pub fn file_name_sanitized(&self) -> PathBuf { let no_null_filename = match self.file_name.find('\0') { Some(index) => &self.file_name[0..index],