1
0
mirror of https://github.com/spaam/svtplay-dl.git synced 2024-11-27 21:54:17 +01:00

http: complain when the file exists

This commit is contained in:
Johan Andersson 2014-04-27 16:13:07 +02:00
parent 6e037c53d7
commit 5c190169f2

View File

@ -4,6 +4,7 @@ from __future__ import absolute_import
import sys
import time
import re
import os
from svtplay_dl.output import progress # FIXME use progressbar() instead
from svtplay_dl.log import log
@ -34,6 +35,9 @@ class HTTP(VideoRetriever):
else:
self.options.output = "%s.mp4" % self.options.output
log.info("Outfile: %s", self.options.output)
if os.path.isfile(self.options.output) and not self.options.force:
log.info("File already exists. use --force to overwrite")
return
file_d = open(self.options.output, "wb")
else:
file_d = sys.stdout