diff options
| author | Felix Domke <tmbinc@elitedvb.net> | 2008-11-18 13:28:27 +0100 |
|---|---|---|
| committer | Felix Domke <tmbinc@elitedvb.net> | 2008-11-18 13:28:27 +0100 |
| commit | 09565fe7720e8e042712b42a9dc7aac2949130cb (patch) | |
| tree | 485a75275b6ab329837e6a5f2e1409ae3be43f98 /lib/python/Tools | |
| parent | 71c070aafe23537ee96a68dbff46246d44476869 (diff) | |
| parent | b925b5213ddc05911ca9736cc22628c876f604f6 (diff) | |
| download | enigma2-09565fe7720e8e042712b42a9dc7aac2949130cb.tar.gz enigma2-09565fe7720e8e042712b42a9dc7aac2949130cb.zip | |
Merge branch 'master' of git.opendreambox.org:/git/enigma2
Diffstat (limited to 'lib/python/Tools')
| -rw-r--r-- | lib/python/Tools/Directories.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/python/Tools/Directories.py b/lib/python/Tools/Directories.py index 2b60924c..0d238b30 100644 --- a/lib/python/Tools/Directories.py +++ b/lib/python/Tools/Directories.py @@ -126,6 +126,9 @@ def resolveFilename(scope, base = "", path_prefix = None): def pathExists(path): return os_path.exists(path) +def isMount(path): + return os_path.ismount(path) + def createDir(path, makeParents = False): try: if makeParents: |
