예제 #1
0
파일: S3fs.py 프로젝트: xiaolushare/pyS3fs
 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 + "/")
예제 #2
0
파일: S3fs.py 프로젝트: rbaron/pyS3fs
 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+"/")
예제 #3
0
파일: S3fs.py 프로젝트: xiaolushare/pyS3fs
 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)
예제 #4
0
파일: S3fs.py 프로젝트: rbaron/pyS3fs
 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)