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