uploadFile($fileName, $this->getSiteFilesPath() . '/' . $destFileName); } /** * Delete a file from the site's public directory. * @param $fileName string the target file name * @return boolean */ function removeSiteFile($fileName) { return $this->deleteFile($this->getSiteFilesPath() . '/' . $fileName); } } ?>