Merge branch 'v1.0-dev' of https://github.com/KDalu/zotify into v1.0-dev
This commit is contained in:
commit
33a718eccb
2 changed files with 4 additions and 2 deletions
|
@ -267,9 +267,10 @@ class App:
|
|||
track.metadata.extend(playable.metadata)
|
||||
try:
|
||||
output = track.create_output(
|
||||
self.__config.audio_format.value.ext,
|
||||
playable.library,
|
||||
playable.output_template,
|
||||
self.__config.replace_existing,
|
||||
self.__config.replace_existing
|
||||
)
|
||||
except FileExistsError:
|
||||
Logger.log(
|
||||
|
|
|
@ -65,6 +65,7 @@ class Playable:
|
|||
|
||||
def create_output(
|
||||
self,
|
||||
ext: str,
|
||||
library: Path | str = Path("./"),
|
||||
output: str = "{title}",
|
||||
replace: bool = False,
|
||||
|
@ -86,7 +87,7 @@ class Playable:
|
|||
"{" + meta.name + "}", fix_filename(meta.string)
|
||||
)
|
||||
file_path = library.joinpath(output).expanduser()
|
||||
if file_path.exists() and not replace:
|
||||
if file_path.with_suffix("." + ext).exists() and not replace:
|
||||
raise FileExistsError("File already downloaded")
|
||||
else:
|
||||
file_path.parent.mkdir(parents=True, exist_ok=True)
|
||||
|
|
Loading…
Add table
Reference in a new issue