예제 #1
0
파일: S3fs.py 프로젝트: xiaolushare/pyS3fs
 def mkdir(self, path, mode):
     logging.debug("mkdir path={} mode={}".format(path, mode))
     self.S3Client.put_file(path + "/", data="")
     node_utils.add_path_to_tree(self.root_node, path + "/")
예제 #2
0
파일: S3fs.py 프로젝트: rbaron/pyS3fs
 def mkdir(self, path, mode):
     logging.debug("mkdir path={} mode={}".format(path, mode))
     self.S3Client.put_file(path+"/", data="")
     node_utils.add_path_to_tree(self.root_node, path+"/")
예제 #3
0
파일: S3fs.py 프로젝트: xiaolushare/pyS3fs
 def create(self, path, mode):
     logging.debug("create path={} mode={}".format(path, mode))
     node_utils.add_path_to_tree(self.root_node, path)
     return 0
예제 #4
0
파일: S3fs.py 프로젝트: rbaron/pyS3fs
 def create(self, path, mode):
     logging.debug("create path={} mode={}".format(path, mode))
     node_utils.add_path_to_tree(self.root_node, path)
     return 0