Changed method of adding extension for duplicate file check

This commit is contained in:
DraftKinner 2025-02-02 21:56:43 -05:00
parent bf43369781
commit e829b39683

View file

@ -87,7 +87,8 @@ class Playable:
"{" + meta.name + "}", fix_filename(meta.string) "{" + meta.name + "}", fix_filename(meta.string)
) )
file_path = library.joinpath(output).expanduser() file_path = library.joinpath(output).expanduser()
if file_path.with_suffix("." + ext).exists() and not replace: file_path = Path(f'{file_path}.{ext}')
if file_path.exists() and not replace:
raise FileExistsError("File already downloaded") raise FileExistsError("File already downloaded")
else: else:
file_path.parent.mkdir(parents=True, exist_ok=True) file_path.parent.mkdir(parents=True, exist_ok=True)