mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-02 09:12:40 +01:00
Fix os.makedirs in Windows
This commit is contained in:
parent
eb99a7ee5f
commit
e5e74ffb97
@ -711,7 +711,9 @@ class FileDownloader(object):
|
||||
return
|
||||
|
||||
try:
|
||||
os.makedirs(os.path.dirname(filename))
|
||||
dn = os.path.dirname(filename)
|
||||
if dn != '' and not os.path.exists(dn):
|
||||
os.makedirs(dn)
|
||||
except (OSError, IOError), err:
|
||||
self.trouble(u'ERROR: unable to create directories: %s' % str(err))
|
||||
return
|
||||
|
Loading…
Reference in New Issue
Block a user