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