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 + "/")
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+"/")
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