码迷,mamicode.com
首页 > 其他好文 > 详细

递归复制&查看文件夹下的指定后缀的文件

时间:2017-12-07 23:43:38      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:open   echo   查看   handle   指定   span   pat   and   copy   

<?php
    header("content-type:text/html;charset=utf8"); 
    set_time_limit(0); 
    $dir = "d:\\";
    function show ($dir){
        $handle = @opendir($dir);
        echo "<ul>";
         while($file = @readdir($handle)){
             if($file == "."||$file == "..")
                 continue;
             
             if(is_dir("$dir/$file")){
                 show("$dir/$file");
             }else{
                 if(pathinfo("$dir/$file",PATHINFO_EXTENSION) == "pdf"){
                     // copy("$dir/$file","./pdf/$file");
                     echo "<li>".iconv(‘gbk‘,‘utf-8‘,$file)."</li>";
                 }
             }
         }
        echo "</ul>";
    }
    show($dir);
    

 

递归复制&查看文件夹下的指定后缀的文件

标签:open   echo   查看   handle   指定   span   pat   and   copy   

原文地址:http://www.cnblogs.com/Basu/p/8001404.html

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