skips downloading files which already exist
parent
8375051085
commit
793b615278
|
@ -9,9 +9,12 @@ from pathlib import Path
|
||||||
def download_audio(link, destdir):
|
def download_audio(link, destdir):
|
||||||
parts = link.split('/')
|
parts = link.split('/')
|
||||||
ptarget = Path(destdir) / Path(parts[-1])
|
ptarget = Path(destdir) / Path(parts[-1])
|
||||||
target = str(ptarget.resolve())
|
target = ptarget.resolve()
|
||||||
args = [ "wget", link, "-o", target ]
|
if target.exists():
|
||||||
print(f"downloading {link} to {target}")
|
print("File already exists, skipping")
|
||||||
|
else:
|
||||||
|
args = [ "wget", link, "-o", str(target) ]
|
||||||
|
print(f"downloading {link}")
|
||||||
subprocess.run(args)
|
subprocess.run(args)
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue