Resolving root path issues
This commit is contained in:
parent
59d67874ad
commit
2c258d470b
|
@ -11,7 +11,10 @@ class Path:
|
|||
return os.path.expanduser("~") + self.subpath
|
||||
|
||||
def get_path(self):
|
||||
return "/" + "/".join(self.path)
|
||||
if self.path:
|
||||
return f"/{'/'.join(self.path)}"
|
||||
else:
|
||||
return f"/{''.join(self.path)}"
|
||||
|
||||
def get_path_list(self):
|
||||
return self.path
|
||||
|
@ -21,7 +24,7 @@ class Path:
|
|||
self.load_directory()
|
||||
|
||||
def pop_from_path(self):
|
||||
if len(self.path) > 1:
|
||||
if self.path:
|
||||
self.path.pop()
|
||||
|
||||
if not self.go_past_home:
|
||||
|
|
|
@ -232,6 +232,9 @@ class WidgetFileActionMixin:
|
|||
target = f"{view.get_current_directory()}"
|
||||
|
||||
if file_name:
|
||||
if len(target) == 1:
|
||||
path = f"{target}{file_name}"
|
||||
else:
|
||||
path = f"{target}/{file_name}"
|
||||
|
||||
if type == True: # Create File
|
||||
|
|
Loading…
Reference in New Issue