(&self, path: &str)
| 613 | } |
| 614 | |
| 615 | pub fn requires_permission(&self, path: &str) -> bool { |
| 616 | self.is_sensitive_file(Path::new(path)) |
| 617 | } |
| 618 | |
| 619 | pub fn is_outside_sandbox(&self, path: &str) -> bool { |
| 620 | self.validate_path(path).is_err() |
no test coverage detected