mirror of
https://github.com/AUTOMATIC1111/stable-diffusion-webui.git
synced 2024-06-07 21:20:49 +00:00
create utility truncate_path
utli.truncate_path(target_path, base_path) return the target_path relative to base_path if target_path is a sub path of base_path else return the absolute path
This commit is contained in:
parent
de03882d6c
commit
de04573438
@ -2,7 +2,7 @@ import os
|
||||
import re
|
||||
|
||||
from modules import shared
|
||||
from modules.paths_internal import script_path
|
||||
from modules.paths_internal import script_path, cwd
|
||||
|
||||
|
||||
def natural_sort_key(s, regex=re.compile('([0-9]+)')):
|
||||
@ -56,3 +56,13 @@ def ldm_print(*args, **kwargs):
|
||||
return
|
||||
|
||||
print(*args, **kwargs)
|
||||
|
||||
|
||||
def truncate_path(target_path, base_path=cwd):
|
||||
abs_target, abs_base = os.path.abspath(target_path), os.path.abspath(base_path)
|
||||
try:
|
||||
if os.path.commonpath([abs_target, abs_base]) == abs_base:
|
||||
return os.path.relpath(abs_target, abs_base)
|
||||
except ValueError:
|
||||
pass
|
||||
return abs_target
|
||||
|
Loading…
Reference in New Issue
Block a user