dp411805872 2013-12-18 07:56
浏览 240
已采纳

文件上传和使用Codeigniter创建上传文件夹

I'm having this function inside my Album_Model:

public function upload($album_id, $album){
        $album= strtolower($album);

        $upload_config = array(
            'upload_path'   =>  './uploads/'.$album,
            'allowed_types' =>  'jpg|jpeg|gif|png',
            'max_size'      =>  '2000',
            'max_width'     =>  '680',
            'max_height'    =>  '435', 
        );

        $this->load->library('upload', $upload_config);

        // create an album if not already exist in uploads dir
// wouldn't make more sence if this part is done if there are no errors and right before the upload ??
        if (!is_dir('uploads')) {
            mkdir('./uploads', 0777, true);
        }
        if (!is_dir('uploads/'.$album)) {
            mkdir('./uploads/'.$album, 0777, true);
        }

        if (!$this->upload->do_upload('imgfile')) { 
            // upload failed
            return array('error' => $this->upload->display_errors('<span>', '</span>'));
        } else {
            // upload success
            $upload_data = $this->upload->data();
            return true;
        }
    }

So what this basicly does is to upload images to an album. Also if the folder album does not exist already, it creates a new album.

I was doing some tests and found out something that might be a small bug. While I was forcing my form to do some invalid upload attempts and the upload fails, as expected, but the album folder (suppose the album folder doesn't exist) is still created.

Whouldn't make more sence to create the album folder if there are no erros and right before uploading the image and if yes how can I fix this??

  • 写回答

3条回答 默认 最新

  • dongzha5934 2013-12-18 08:13
    关注

    You have set a flag for checking the directory existence. I have changed your code to make it work as per your need.

    <?php
    
    public function upload($album_id, $album)
    {
        $album = strtolower($album);
    
        $upload_config = array('upload_path' => './uploads/' . $album, 'allowed_types' =>
            'jpg|jpeg|gif|png', 'max_size' => '2000', 'max_width' => '680', 'max_height' =>
            '435', );
    
        $this->load->library('upload', $upload_config);
    
        // create an album if not already exist in uploads dir
        // wouldn't make more sence if this part is done if there are no errors and right before the upload ??
        if (!is_dir('uploads'))
        {
            mkdir('./uploads', 0777, true);
        }
        $dir_exist = true; // flag for checking the directory exist or not
        if (!is_dir('uploads/' . $album))
        {
            mkdir('./uploads/' . $album, 0777, true);
            $dir_exist = false; // dir not exist
        }
        else{
    
        }
    
        if (!$this->upload->do_upload('imgfile'))
        {
            // upload failed
            //delete dir if not exist before upload
            if(!$dir_exist)
              rmdir('./uploads/' . $album);
    
            return array('error' => $this->upload->display_errors('<span>', '</span>'));
        } else
        {
            // upload success
            $upload_data = $this->upload->data();
            return true;
        }
    }
    
    ?>
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥20 西门子S7-Graph,S7-300,梯形图
  • ¥50 用易语言http 访问不了网页
  • ¥50 safari浏览器fetch提交数据后数据丢失问题
  • ¥15 matlab不知道怎么改,求解答!!
  • ¥15 永磁直线电机的电流环pi调不出来
  • ¥15 用stata实现聚类的代码
  • ¥15 请问paddlehub能支持移动端开发吗?在Android studio上该如何部署?
  • ¥20 docker里部署springboot项目,访问不到扬声器
  • ¥15 netty整合springboot之后自动重连失效
  • ¥15 悬赏!微信开发者工具报错,求帮改