def docroot_exists(path): p = _fixPath(C.documentRoot, relpath(path)) return C.documentRootFS.exists(p)
def listdir(path): p = _fixPath(C.documentRoot, relpath(path)) listing = C.documentRootFS.listdir(p) return listing
def docroot_open(path): p = _fixPath(C.documentRoot, relpath(path)) return C.documentRootFS.open(p)
def listdir(path): p=_fixPath(C.documentRoot, relpath(path)) listing=C.documentRootFS.listdir(p) return listing