码迷,mamicode.com
首页 > Web开发 > 详细

php--------文件夹文件拷贝和复制

时间:2018-02-11 10:50:17      阅读:217      评论:0      收藏:0      [点我收藏+]

标签:==   str   pen   while   mod   cti   amp   ret   cache   

php开发中常常对文件进行操作,文件夹和文件的拷贝,复制等。

/**
 * 文件夹文件拷贝
 *
 * @param string $src 来源文件夹
 * @param string $dst 目的地文件夹
 * @return bool
 */
function dir_copy($src = ‘‘, $dst = ‘‘)
{
    if (empty($src) || empty($dst))
    {
        return false;
    }
 
    $dir = opendir($src);
    dir_mkdir($dst);
    while (false !== ($file = readdir($dir)))
    {
        if (($file != ‘.‘) && ($file != ‘..‘))
        {
            if (is_dir($src . ‘/‘ . $file))
            {
                dir_copy($src . ‘/‘ . $file, $dst . ‘/‘ . $file);
            }
            else
            {
                copy($src . ‘/‘ . $file, $dst . ‘/‘ . $file);
            }
        }
    }
    closedir($dir);
 
    return true;
}
 
/**
 * 创建文件夹
 *
 * @param string $path 文件夹路径
 * @param int $mode 访问权限
 * @param bool $recursive 是否递归创建
 * @return bool
 */
function dir_mkdir($path = ‘‘, $mode = 0777, $recursive = true)
{
    clearstatcache();
    if (!is_dir($path))
    {
        mkdir($path, $mode, $recursive);
        return chmod($path, $mode);
    }
 
    return true;
}

 

php--------文件夹文件拷贝和复制

标签:==   str   pen   while   mod   cti   amp   ret   cache   

原文地址:https://www.cnblogs.com/zhangqie/p/8403583.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!