Exemplo n.º 1
0
 def rmdir(self, path):
     logging.debug("rmdir path={}".format(path))
     self.S3Client.delete_file(path + "/")
     node_utils.remove_path_from_tree(self.root_node, path + "/")
Exemplo n.º 2
0
 def rmdir(self, path):
     logging.debug("rmdir path={}".format(path))
     self.S3Client.delete_file(path+"/")
     node_utils.remove_path_from_tree(self.root_node, path+"/")
Exemplo n.º 3
0
 def unlink(self, path):
     logging.debug("unlink path={}".format(path))
     self.S3Client.delete_file(path)
     node_utils.remove_path_from_tree(self.root_node, path)
Exemplo n.º 4
0
 def unlink(self, path):
     logging.debug("unlink path={}".format(path))
     self.S3Client.delete_file(path)
     node_utils.remove_path_from_tree(self.root_node, path)