Return the file system path to prevent `resources.path()` from creating a temporary copy.
(self, resource)
| 174 | yield zipfile.Path(path_str[: match.start()], inner.lstrip('/')) |
| 175 | |
| 176 | def resource_path(self, resource): |
| 177 | """ |
| 178 | Return the file system path to prevent |
| 179 | `resources.path()` from creating a temporary |
| 180 | copy. |
| 181 | """ |
| 182 | return str(self.path.joinpath(resource)) |
| 183 | |
| 184 | def files(self): |
| 185 | return self.path |