Ensure path for link files exists (#1755)

Authored by: Zirro
This commit is contained in:
Zirro 2021-11-23 01:40:53 +05:30 committed by pukkandan
parent f7b558df4d
commit 0e6b018a10
No known key found for this signature in database
GPG Key ID: 0F00D95A001F4698
1 changed files with 2 additions and 0 deletions

View File

@ -2690,6 +2690,8 @@ class YoutubeDL(object):
self.report_error('Cannot write internet shortcut file because the "webpage_url" field is missing in the media information')
return False
linkfn = replace_extension(self.prepare_filename(info_dict, 'link'), link_type, info_dict.get('ext'))
if not self._ensure_dir_exists(encodeFilename(linkfn)):
return False
if self.params.get('overwrites', True) and os.path.exists(encodeFilename(linkfn)):
self.to_screen(f'[info] Internet shortcut (.{link_type}) is already present')
return True