app->user->account; $packageFile = $this->app->wwwRoot . 'data/client/' . $account . '/zentaoclient.zip'; $size = 0; if(file_exists($packageFile)) { $size = filesize($packageFile); $size = $size ? round($size / 1048576, 2) : 0; } $response = array(); $response['result'] = 'success'; $response['size'] = $size; $this->send($response); } }