Use os.makedirs instead of homebrewn pmkdir
authorPhilipp Hagemeister <phihag@phihag.de>
Tue, 6 Sep 2011 15:32:22 +0000 (17:32 +0200)
committerPhilipp Hagemeister <phihag@phihag.de>
Tue, 6 Sep 2011 15:32:22 +0000 (17:32 +0200)
youtube-dl

index 7ac27b5a049dddc978c13c50c566e5886d85ab0d..0b06c69cc5af7f5ea49f95be8efa5022dde05df9 100755 (executable)
@@ -455,16 +455,6 @@ class FileDownloader(object):
                self._screen_file = [sys.stdout, sys.stderr][params.get('logtostderr', False)]
                self.params = params
 
-       @staticmethod
-       def pmkdir(filename):
-               """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)
-
        @staticmethod
        def format_bytes(bytes):
                if bytes is None:
@@ -721,7 +711,7 @@ class FileDownloader(object):
                        return
 
                try:
-                       self.pmkdir(filename)
+                       os.makedirs(os.path.dirname(filename))
                except (OSError, IOError), err:
                        self.trouble(u'ERROR: unable to create directories: %s' % str(err))
                        return