(self, path)
| 387 | # -------------------------------------------------------------------- |
| 388 | # get path without traversal and cwd information |
| 389 | def tpath(self, path): |
| 390 | # remove leading separators |
| 391 | path = path.lstrip(c.SEP) |
| 392 | return self.vol + self.normpath(path) |
| 393 | |
| 394 | # get path without volume and traversal information |
| 395 | def cpath(self, path): |