Save_To_Path For Image Uploading

hi, please help me!!!!!!

I want to upload an image to the folder:


http://127.0.0.1/pro/uploads/images/profile-avatar/

In the controller:




//.......

if ($model->save()) {

    $model->avatar=CUploadedFile::getInstance($model,'avatar');

    $model->avatar->saveAs(Yii::app()->baseUrl.'/uploads/images/profile-avatar/666.jpg');

//.......



but, i always get the erro message: failed to open stream:


No such file or directory.

please help me. how to write the path for uploading?

hi i found a solution, hope it helps

change




$model->avatar->saveAs(Yii::app()->baseUrl.'/uploads/images/profile-avatar/666.jpg');



to




$model->avatar->saveAs('uploads/images/profile-avatar/666.jpg');