From 3af1e1728496f0cccd18946d03be78c5910914be Mon Sep 17 00:00:00 2001 From: Ricardo Garcia Date: Thu, 24 Jul 2008 10:07:46 +0200 Subject: [PATCH] Fix directory creation not working with absolute paths --- youtube-dl | 1 + 1 file changed, 1 insertion(+) 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)