Does this directory contain `path`?
(&self, path: S)
| 67 | |
| 68 | /// Does this directory contain `path`? |
| 69 | pub fn contains<S: AsRef<Path>>(&self, path: S) -> bool { |
| 70 | self.get_entry(path).is_some() |
| 71 | } |
| 72 | |
| 73 | /// Create directories and extract all files to real filesystem. |
| 74 | /// Creates parent directories of `path` if they do not already exist. |