X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/e9db1fd8163a6a18c9e9f8a4c0319e2985cba03e..bb3daebb06398321acc6a5742a1ac3dba47a6e1a:/lib/python/Tools/Directories.py diff --git a/lib/python/Tools/Directories.py b/lib/python/Tools/Directories.py index 6b321c32..f7be9535 100644 --- a/lib/python/Tools/Directories.py +++ b/lib/python/Tools/Directories.py @@ -10,6 +10,7 @@ SCOPE_CONFIG = 6 SCOPE_LANGUAGE = 7 SCOPE_HDD = 8 SCOPE_PLUGINS = 9 +SCOPE_MEDIA = 10 PATH_CREATE = 0 PATH_DONTCREATE = 1 @@ -26,6 +27,7 @@ defaultPaths = { SCOPE_SKIN: ("/usr/share/enigma2/", PATH_DONTCREATE), SCOPE_SKIN_IMAGE: ("/usr/share/enigma2/", PATH_DONTCREATE), SCOPE_HDD: ("/hdd/movie/", PATH_DONTCREATE), + SCOPE_MEDIA: ("/media/", PATH_DONTCREATE), SCOPE_USERETC: ("", PATH_DONTCREATE) # user home directory } @@ -40,15 +42,24 @@ fallbackPaths = { SCOPE_HDD: [("/hdd/movies", PATH_MOVE)] } -def resolveFilename(scope, base = ""): +def resolveFilename(scope, base = "", path_prefix = None): + if base[0:2] == "~/": + # you can only use the ~/ if we have a prefix directory + assert path_prefix is not None + base = os.path.join(path_prefix, base[2:]) + + # don't resolve absolute paths + if base[0:1] == '/': + return base + path = defaultPaths[scope] if path[1] == PATH_CREATE: if (not pathExists(defaultPaths[scope][0])): os.mkdir(path[0]) - if len(base > 0) and base[0] == '/': - path = "" + #if len(base) > 0 and base[0] == '/': + #path = ("", None) if not fileExists(path[0] + base): #try: @@ -93,7 +104,7 @@ def fileExists(f): def getRecordingFilename(basename): # filter out non-allowed characters - non_allowed_characters = "/.\\" + non_allowed_characters = "/.\\:*?<>|\"" filename = "" basename = basename.replace('\xc2\x86', '').replace('\xc2\x87', '')