2016-04-27 190 views
3

我想問你一件小事。
我在主文件夾中有幾個其他文件夾。 此子文件夾命名爲:PHP:如何重命名文件夾

V1,V2,V3,V4 ...

我想知道,當我刪除這些文件夾之一,

例如V2 - >讓我有V1,V3,V4

如何重命名這一切文件夾備份到

V1,V2,V3。

我嘗試這樣的代碼,但它不工作:

$path='directory/'; 
$handle=opendir($path); 
$i = 1; 
while (($file = readdir($handle))!==false){ 
    if ($file!="." && $file!=".."){ 
     rename($path . $file, $path . 'v'.$i); 
     $i++; 
    } 

謝謝!

+0

檢查$文件是你認爲它應該與調試器,或窮人的調試echo $文件; – Halfstop

+0

該文件夾中的任何其他目錄,或只是v *? – Hexchaimen

回答

2

此代碼檢索所有開頭「V」後面數字名稱的目錄。

目錄過濾:V1,V2,V3,...
目錄排除:V_1,v2_1,V3A,T1,..,XYZ

最終目錄:V0,V1,V2, v3,.....

如果最終目錄需要從v1開始,那麼我會再次獲取目錄列表並執行一個更多的重命名過程。我希望這有幫助!

$path='main_folder/'; $handle=opendir($path); $i = 1; $j = 0; $foldersStartingWithV = array(); 

// Folder names starts with v followed by numbers only 
// We exclude folders like v5_2, t2, v6a, etc 
$pattern = "/^v(\d+?)?$/"; 

while (($file = readdir($handle))!==false){ 
    preg_match($pattern, $file, $matches, PREG_OFFSET_CAPTURE); 

    if(count($matches)) { 
    // store filtered file names into an array 
    array_push($foldersStartingWithV, $file); 
    } 
} 

// Natural order sort the existing folder names 
natsort($foldersStartingWithV); 

// Loop the existing folder names and rename them to new serialized order 
foreach($foldersStartingWithV as $key=>$val) { 
// When old folder names equals new folder name, then skip renaming 
    if($val != "v".$j) { 
     rename($path.$val, $path."v".$j); 
    } 
    $j++; 
} 
+0

與'natsort()'很好! – Hexchaimen

1

這應該對你有幫助;然而,我要承擔的權限是在服務器上正確,你可以從一個腳本來命名:

// Set up directory 
$path = "test/"; 
// Get the sub-directories 
$dirs = array_filter(glob($path.'*'), 'is_dir'); 
// Get a integer set for the loop 
$i=0; 
// Natural sort of the directories, props to @dinesh 
natsort($dirs); 

foreach ($dirs as $dir) 
{ 
    // Eliminate any other directories, only v[0-9] 
    if(preg_match('/v.(\d+?)?$/', $dir) 
    { 
     // Obtain just the directory name 
     $file = end(explode("/", $dir)); 
     // Plus one to your integer right before renaming. 
     $i++; 
     //Do the rename 
     rename($path.$file,$path."v".$i); 
    } 
}