Added Fujitsu UPC BIOS Extractor v2.0_a2

This commit is contained in:
platomav 2022-06-29 00:44:42 +03:00
parent 82cd4336bd
commit be90f364d2
3 changed files with 135 additions and 0 deletions

View file

@ -74,6 +74,10 @@ def path_parent(in_path):
def path_stem(in_path):
return PurePath(in_path).stem
# Get list of path file extensions
def path_suffixes(in_path):
return PurePath(in_path).suffixes
# Check if path is absolute
def is_path_absolute(in_path):
return Path(in_path).is_absolute()