利用PHP目录和文件函数遍历用户给出目录的所有的文件夹,修改文件名称

  • 不说废话了,先上代码吧,html代码比较简单自己丰富一下把


    


    

路径:

名字:

位置:前

  • 然后是我的php代码
';
}  
// fRenames('E:/ceshi','l',1);  
// fRenames('E:/ceshi','r');  
if(empty($_GET['lu']) || empty($_GET['ming']) || empty($_GET['wei'])){
  echo '请确认表单已全部填写';exit;
}
fRenames($_GET['lu'],$_GET['ming'],$_GET['wei']);  
// header("Location: index.html"); 


?>  
  • 注:php验证功能没写全,用的自己补一补

↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓
注意啊:2020-05-20再次更新
↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑

  • 上边的方法吧,理论上是没有问题的,但是后来经过测试,当文件夹数量超过36个的时候,会造成程序的死循环,因为业务着急,具体原因尚不知道,所以改良了一下下面的方法,不限制文件夹数量


    页面啊

不才不才,稍稍加了一点验证

使用foreach

O的K

是不是觉得上图片很难受,别急,下面给各位上源码

  • index.html


    
    


    

完整路径:

需要添加的名字:

名字位置位置:前

源文件夹名字需要删除字符:

  • ha.php
';

   $list = array();   

   foreach( glob( $dirname . '/*') as $item ){ 
     if(is_dir($item)){
      $Oldname = ltrim(strrchr($item,'/'),'/');
      $curDir = $item;
      if($pos == 1){ 
          if(empty($shan)){
            $lname = $dirname.'/'.$newname.$Oldname;
          }else{
            $lname = $dirname.'/'.$newname.explode($shan,$Oldname,2)['1'];
          }
          rename($curDir,$lname);  
        }else{
          if(empty($shan)){
            rename($curDir,$curDir.$newname);  
          }else{
            $curDirNew = $dirname.'/'.explode($shan,$Oldname,2)['1'];   
             rename($curDir,$curDirNew.$newname); 
          }
        }

     }   
   }   
  
 echo '

成功

'; echo '

'; } // fRenames('E:/ceshi','l',1); // fRenames('E:/ceshi','r'); // var_dump($_GET);exit; // if(empty($_GET['lu']) || empty($_GET['ming']) || empty($_GET['wei'])){ // echo '请确认表单已全部填写';exit; // } fRenames($_GET['lu'],$_GET['ming'],$_GET['wei'],$_GET['shan']); // header("Location: index.html"); ?>

大概就是这个样子吧,业务着急,逻辑写的有点乱,不喜勿喷,方法搁这呢,自己整理逻辑吧

你可能感兴趣的:(利用PHP目录和文件函数遍历用户给出目录的所有的文件夹,修改文件名称)