From: Ricardo Garcia Date: Thu, 24 Jul 2008 08:07:46 +0000 (+0200) Subject: Fix directory creation not working with absolute paths X-Git-Url: http://git.oshgnacknak.de/?a=commitdiff_plain;h=3af1e1728496f0cccd18946d03be78c5910914be;p=youtube-dl Fix directory creation not working with absolute paths --- diff --git a/youtube-dl b/youtube-dl index 4dea34376..fe64819c7 100755 --- a/youtube-dl +++ b/youtube-dl @@ -94,6 +94,7 @@ class FileDownloader(object): """Create directory components in filename. Similar to Unix "mkdir -p".""" components = filename.split(os.sep) aggregate = [os.sep.join(components[0:x]) for x in xrange(1, len(components))] + aggregate = ['%s%s' % (x, os.sep) for x in aggregate] # Finish names with separator for dir in aggregate: if not os.path.exists(dir): os.mkdir(dir)