Skip to content
This repository was archived by the owner on Apr 7, 2021. It is now read-only.

Commit b686787

Browse files
blurrrblinkfanel
authored andcommittedAug 24, 2020
vlsub: fixes creation of cache directory if it doesn't exist
When VLSub asks for the cache directory and it doesn't exist an error is thrown. This patch makes sure that the directory is created before it is accessed for writing. Fixes #21595 Signed-off-by: Thomas Guillem <thomas@gllm.fr> (cherry picked from commit 583dded749fb3078a8cad495efcd5f4bcef0a875) Signed-off-by: Pierre Ynard <linkfanel@yahoo.fr>
1 parent 5212f56 commit b686787

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed
 

‎share/lua/extensions/VLSub.lua

+16
Original file line numberDiff line numberDiff line change
@@ -1488,6 +1488,22 @@ function download_subtitles()
14881488

14891489
subfileName = subfileName.."."..item.SubFormat
14901490
local tmp_dir = vlc.config.cachedir()
1491+
-- create the cache directory if it doesn't already exist
1492+
local separator = ""
1493+
local current_dir = ""
1494+
if package.config:sub(1, 1):match("/") then
1495+
-- unix based systems
1496+
separator = "/"
1497+
current_dir = "/"
1498+
else
1499+
-- windows systems
1500+
separator = "\\"
1501+
end
1502+
for dir in tmp_dir:gmatch("[^"..separator.."]+") do
1503+
current_dir = current_dir..dir..separator
1504+
local vars = vlc.io.mkdir(current_dir, "0700")
1505+
end
1506+
14911507
local file_target_access = true
14921508

14931509
local tmpFileName = dump_zip(

0 commit comments

Comments
 (0)
This repository has been archived.