mirror of
				https://gitlab.com/ytdl-org/youtube-dl.git
				synced 2025-11-04 04:57:07 -05:00 
			
		
		
		
	[YoutubeDL] Sanitize path before creating non-existent paths (Closes #4324)
This commit is contained in:
		@@ -1262,7 +1262,7 @@ class YoutubeDL(object):
 | 
			
		||||
            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:
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user