mirror of
https://github.com/Wojtek242/qobuz-dl.git
synced 2024-11-22 19:15:25 +01:00
Add FileExistsError exception #7
This commit is contained in:
parent
68caf02c31
commit
b456066f00
@ -38,7 +38,10 @@ def tag_flac(file, path, d, album, istrack=True):
|
|||||||
|
|
||||||
audio.save()
|
audio.save()
|
||||||
title = sanitize_filename(d["title"])
|
title = sanitize_filename(d["title"])
|
||||||
|
try:
|
||||||
os.rename(file, "{}/{:02}. {}.flac".format(path, d["track_number"], title))
|
os.rename(file, "{}/{:02}. {}.flac".format(path, d["track_number"], title))
|
||||||
|
except FileExistsError:
|
||||||
|
print("File already exists. Skipping...")
|
||||||
|
|
||||||
|
|
||||||
def tag_mp3(file, path, d, album, istrack=True):
|
def tag_mp3(file, path, d, album, istrack=True):
|
||||||
@ -71,4 +74,7 @@ def tag_mp3(file, path, d, album, istrack=True):
|
|||||||
|
|
||||||
audio.save()
|
audio.save()
|
||||||
title = sanitize_filename(d["title"])
|
title = sanitize_filename(d["title"])
|
||||||
|
try:
|
||||||
os.rename(file, "{}/{:02}. {}.mp3".format(path, d["track_number"], title))
|
os.rename(file, "{}/{:02}. {}.mp3".format(path, d["track_number"], title))
|
||||||
|
except FileExistsError:
|
||||||
|
print("File already exists. Skipping...")
|
||||||
|
Loading…
Reference in New Issue
Block a user