coffee_cn

博客园 首页 新随笔 联系 订阅 管理
cp2oss(_GALLERY_DIR);

function cp2oss($directory) {
    $mydir = dir($directory);
    while($file = $mydir->read())
    {
        if(is_dir("$directory/$file") && $file != "." && $file != "..")
        {
            cp2oss("$directory/$file");
        }
        else if($file != "." && $file != "..")
        {
            $dir = ltrim(str_replace(_GALLERY_DIR, '', $directory),'/');
            if(!OssUtil::fileExists(OSS_GALLERY_BUCKET, $dir."/".$file)){
                echo($dir."/".$file."\n");
                echo(_GALLERY_DIR.$dir.'/'.$file."\n");
                OssUtil::uploadFileToBucket(OSS_GALLERY_BUCKET, $dir."/", $file, _GALLERY_DIR.$dir.'/'.$file);
            }
        }
    }
    $mydir->close();
}

 

posted on 2019-01-11 18:57  coffee  阅读(766)  评论(0编辑  收藏  举报