Changed method of adding extension for duplicate file check
This commit is contained in:
parent
bf43369781
commit
e829b39683
1 changed files with 2 additions and 1 deletions
|
@ -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)
|
||||||
|
|
Loading…
Add table
Reference in a new issue