(self, inner_path, mode="rb", create_dirs=False, **kwargs)
| 211 | |
| 212 | # Open file object |
| 213 | def open(self, inner_path, mode="rb", create_dirs=False, **kwargs): |
| 214 | file_path = self.getPath(inner_path) |
| 215 | if create_dirs: |
| 216 | file_dir = os.path.dirname(file_path) |
| 217 | if not os.path.isdir(file_dir): |
| 218 | os.makedirs(file_dir) |
| 219 | return open(file_path, mode, **kwargs) |
| 220 | |
| 221 | # Open file object |
| 222 | def read(self, inner_path, mode="rb"): |
no test coverage detected