(self, silent=False)
| 1251 | self.smbsock.close() |
| 1252 | |
| 1253 | def _require_share(self, silent=False): |
| 1254 | if self.current_tree is None: |
| 1255 | if not silent: |
| 1256 | print("No share selected ! Try 'shares' then 'use'.") |
| 1257 | return True |
| 1258 | |
| 1259 | def collapse_path(self, path): |
| 1260 | # the amount of pathlib.wtf you need to do to resolve .. on all platforms |
no outgoing calls
no test coverage detected