Normalize path for CIFS usage
(self, path)
| 1262 | return pathlib.PureWindowsPath(os.path.normpath(path.as_posix())) |
| 1263 | |
| 1264 | def normalize_path(self, path): |
| 1265 | """ |
| 1266 | Normalize path for CIFS usage |
| 1267 | """ |
| 1268 | return str(self.collapse_path(path)).lstrip("\\") |
| 1269 | |
| 1270 | @CLIUtil.addcommand() |
| 1271 | def shares(self): |
no test coverage detected