def rmdir(path): if not zpath.iscloudpath(path): return os.rmdir(path) return None
def open(path,flags,mode=0777): if not zpath.iscloudpath(path): return os.open(path,flags,mode) return None
def removedirs(path): if not zpath.iscloudpath(path): return os.removedirs(path) return None
def mkdir(path,mode=0777): if not zpath.iscloudpath(path): return os.mkdir(path,mode) return None
def makedirs(path,mode=0777): if not zpath.iscloudpath(path): return os.makedirs(path,mode) return None
def listdir(path): if not zpath.iscloudpath(path): return os.listdir(path) return None
def access(path,mode): if not zpath.iscloudpath(path): return os.access(path,mode) return None