Delete Path

The following SDK method can be used to delete all the objects present in the specified path.

copy
bucketInstance.deletePath("{path_to_be_deleted}") { error in
	if let error = error {
		print("Error : \( error )")
		return
	}
	print("Path Deleted Successfully")
}

Last Updated 2025-08-28 12:01:44 +0530 IST