php 递归目录

转载请注明来源:https://www.cnblogs.com/hookjc/

$TheFilePath='';
function file_list($path)
{
 global $TheFilePath;
 if ($handle = opendir($path))
 {
  while (false !== ($file = readdir($handle)))
  {
   if ($file != "." && $file != "..")
   {     
    if(strpos($path."/".$file,'_notes'))
     continue;
    if (is_dir($path."/".$file))
      file_list($path."/".$file);   
    else
     $TheFilePath.="|".$path."/".$file;    
   }
  }  
 }

file_list('view');
echo str_replace("|","<br>",$TheFilePath);

来源:python脚本自动迁移

posted @ 2020-06-24 11:27  jiangcheng_15  阅读(113)  评论(0编辑  收藏  举报