Esempio n. 1
0
def rmdir(path):
	if not zpath.iscloudpath(path):
		return os.rmdir(path)
	return None
Esempio n. 2
0
def open(path,flags,mode=0777):
	if not zpath.iscloudpath(path):
		return os.open(path,flags,mode)
	return None
Esempio n. 3
0
def removedirs(path):
	if not zpath.iscloudpath(path):
		return os.removedirs(path)
	return None
Esempio n. 4
0
def mkdir(path,mode=0777):
	if not zpath.iscloudpath(path):
		return os.mkdir(path,mode)
	return None
Esempio n. 5
0
def makedirs(path,mode=0777):
	if not zpath.iscloudpath(path):
		return os.makedirs(path,mode)
	return None
Esempio n. 6
0
def listdir(path):
	if not zpath.iscloudpath(path):
		return os.listdir(path)
	return None
Esempio n. 7
0
def access(path,mode):
	if not zpath.iscloudpath(path):
		return os.access(path,mode)
	return None