public function getFileSize($filename)
{
$size = '';
if ($filename != '') {
$absFile = str_replace('\\', '/', Path::clean($this->fileAbsPath . $filename));
if (File::exists($absFile)) {
$size = PhocaDownloadFile::getFileSizeReadable(filesize($absFile));
} else {
$size = '';
}
}
return $size;
}