Check if a path is inside the .atomic directory.
(&self, path: P)
| 773 | |
| 774 | /// Check if a path is inside the .atomic directory. |
| 775 | pub fn is_internal_path<P: AsRef<Path>>(&self, path: P) -> bool { |
| 776 | path.as_ref().starts_with(&self.dot_dir) |
| 777 | } |
| 778 | } |