Add parameter simple to remove .\ from relative path.
This commit is contained in:
parent
d9d10a843e
commit
85572ba406
1 changed files with 3 additions and 2 deletions
|
@ -126,7 +126,7 @@ class Path:
|
|||
def relative_path(self):
|
||||
return self.relative_to(os.getcwd())
|
||||
|
||||
def relative_to(self, other):
|
||||
def relative_to(self, other, simple=False):
|
||||
other = Path(other)
|
||||
|
||||
if self == other:
|
||||
|
@ -139,7 +139,8 @@ class Path:
|
|||
relative = self.absolute_path
|
||||
relative = relative.replace(other.absolute_path, '', 1)
|
||||
relative = relative.lstrip(os.sep)
|
||||
relative = '.' + os.sep + relative
|
||||
if not simple:
|
||||
relative = '.' + os.sep + relative
|
||||
return relative
|
||||
|
||||
common = common_path([other.absolute_path, self.absolute_path], fallback=None)
|
||||
|
|
Loading…
Reference in a new issue