mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-07 11:42:43 +01:00
[YoutubeDL] Sanitize path before creating non-existent paths (Closes #4324)
This commit is contained in:
parent
f18ef2d144
commit
e5a11a2293
@ -1262,7 +1262,7 @@ def process_info(self, info_dict):
|
||||
return
|
||||
|
||||
try:
|
||||
dn = os.path.dirname(encodeFilename(filename))
|
||||
dn = os.path.dirname(sanitize_path(encodeFilename(filename)))
|
||||
if dn and not os.path.exists(dn):
|
||||
os.makedirs(dn)
|
||||
except (OSError, IOError) as err:
|
||||
|
Loading…
Reference in New Issue
Block a user