def setup_local_netflix_library(self, source):
"""Sets up the basic directories
Parameters
----------
source : :obj:`dict` of :obj:`str`
Dicitionary with directories to be created
"""
for label in source:
exists = xbmcvfs.exists(
path=self.kodi_helper.check_folder_path(source[label]))
if not exists:
xbmcvfs.mkdir(source[label])
评论列表
文章目录