Browse Source

Fix directory creation not working with absolute paths

rtmp_test
Ricardo Garcia 16 years ago
parent
commit
3af1e17284
1 changed files with 1 additions and 0 deletions
  1. +1
    -0
      youtube-dl

+ 1
- 0
youtube-dl View File

@ -94,6 +94,7 @@ class FileDownloader(object):
"""Create directory components in filename. Similar to Unix "mkdir -p".""" """Create directory components in filename. Similar to Unix "mkdir -p"."""
components = filename.split(os.sep) components = filename.split(os.sep)
aggregate = [os.sep.join(components[0:x]) for x in xrange(1, len(components))] 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: for dir in aggregate:
if not os.path.exists(dir): if not os.path.exists(dir):
os.mkdir(dir) os.mkdir(dir)


Loading…
Cancel
Save