Rename更改檔案 資料夾名稱

2021-12-29 20:02:40 字數 848 閱讀 1592

rename()命令可以實現檔案資料夾的更名操作,而且還可以實現檔案、資料夾的移動操作,命令格式為:

bool rename ( stringoldname,stringnewname [, resource context])

下面演示rename的具體應用:

檔案位置如圖:

目的:1.把cache.txt 更名為rename.txt;

2.將cache2.txt更名為cache3.txt

3.將html目錄 更名為 cache

4.將file目錄轉移到html目錄下(可以實現更名)

**實現(有錯誤):

<?php

$file = "html/cache.txt";

$rename = "html/rename.txt";

if(rename($file,$rename))else

rename("html/cache2","html/cache3.txt");

rename("html","cache");

rename("file","html/files");

?>

常見錯誤分析:

檢查語法,無問題;經查file目錄不存在,導致錯誤。更為files編譯成功

這個錯誤小啊,致命啊…………………………

Rename 更改檔案 資料夾名稱

rename 命令可以實現檔案資料夾的更名操作,而且還可以實現檔案 資料夾的移動操作,命令格式為 bool rename stringoldname,stringnewname resource context 下面演示rename的具體應用 檔案位置如圖 目的 1.把cache.txt 更名為re...

C 拷貝資料夾到指定資料夾並更改資料夾名稱

using system using system.collections.generic using system.text namespace clientprintserver.tools 判斷目標目錄是否存在如果不存在則新建 if system.io.directory.exists aim...

php遍歷資料夾檔名稱,並更改檔名稱

function list file date echo a 把資料夾紅名輸出 list file a 因為是資料夾所以再次呼叫自己這個函式,把這個資料夾下的檔案遍歷出來 else var dump info echo file name list file f myoa function list...