how to download a file from public directory in ci
public function download($file)
{
$this->load->helper('download');
$name = $file;
$data = file_get_contents('./uploads/foldername/'.$file);
force_download($name, $data);
redirect('index','refresh');
}