瀏覽代碼

Fix directory creation not working with absolute paths

Ricardo Garcia 17 年之前
父節點
當前提交
3af1e17284
共有 1 個文件被更改,包括 1 次插入0 次删除
  1. 1 0
      youtube-dl

+ 1 - 0
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)