added ability of extracting .7z files (#144)
This commit is contained in:
parent
0288770ec4
commit
009746aa01
|
|
@ -74,6 +74,8 @@ def get_base_name(orig_path: str):
|
||||||
return orig_path.replace(".tgz", "")
|
return orig_path.replace(".tgz", "")
|
||||||
elif orig_path.endswith(".zip"):
|
elif orig_path.endswith(".zip"):
|
||||||
return orig_path.replace(".zip", "")
|
return orig_path.replace(".zip", "")
|
||||||
|
elif orig_path.endswith(".7z"):
|
||||||
|
return orig_path.replace(".7z", "")
|
||||||
elif orig_path.endswith(".Z"):
|
elif orig_path.endswith(".Z"):
|
||||||
return orig_path.replace(".Z", "")
|
return orig_path.replace(".Z", "")
|
||||||
elif orig_path.endswith(".rar"):
|
elif orig_path.endswith(".rar"):
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue