initial fix for filename length limits on *nix systems
This commit is contained in:
parent
5cea278d3a
commit
7fd19fa4e7
@ -512,6 +512,9 @@ def save_image(image, path, basename, seed=None, prompt=None, extension='png', i
|
||||
file_decoration = "-" + file_decoration
|
||||
|
||||
file_decoration = namegen.apply(file_decoration) + suffix
|
||||
if hasattr(os, 'statvfs'):
|
||||
max_name_len = os.statvfs(path).f_namemax
|
||||
file_decoration = file_decoration[:max_name_len - 5]
|
||||
|
||||
if add_number:
|
||||
basecount = get_next_sequence_number(path, basename)
|
||||
|
Loading…
Reference in New Issue
Block a user