chore: Add missing ZipFileData::is_dir()
method
This commit is contained in:
parent
1e574a961a
commit
09676e7bee
1 changed files with 8 additions and 0 deletions
|
@ -362,6 +362,14 @@ pub struct ZipFileData {
|
||||||
}
|
}
|
||||||
|
|
||||||
impl 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 {
|
pub fn file_name_sanitized(&self) -> PathBuf {
|
||||||
let no_null_filename = match self.file_name.find('\0') {
|
let no_null_filename = match self.file_name.find('\0') {
|
||||||
Some(index) => &self.file_name[0..index],
|
Some(index) => &self.file_name[0..index],
|
||||||
|
|
Loading…
Add table
Reference in a new issue