(self, path, *args, **kwargs)
| 47 | return self._fs.cp_file(path1, path2, *args, **kwargs) |
| 48 | |
| 49 | def rm_file(self, path, *args, **kwargs): |
| 50 | path = posixpath.join(self.local_root_dir, self._strip_protocol(path)) |
| 51 | return self._fs.rm_file(path, *args, **kwargs) |
| 52 | |
| 53 | def rm(self, path, *args, **kwargs): |
| 54 | path = posixpath.join(self.local_root_dir, self._strip_protocol(path)) |
nothing calls this directly
no test coverage detected