-
-
/**
- * 操縱檔案類別
- *
- * 範例:
- * FileUtil::createDir('a/1/2/3'); 測試建立資料夾建立一個a/1/2/3資料夾
- * FileUtil::createFile('b/1/2/3'); 測試建立檔案在b/1/2/資料夾下方建造一個3檔案
- * FileUtil::createFile('b /1/2/3.exe');測試建立檔案在b/1/2/資料夾下方建立一個3.exe檔
- * FileUtil::copyDir('b','d/e');測試複製資料夾建立d/e資料夾,把b資料夾下的內容複製進去
- * FileUtil::copyFile('b/1/2/3.exe','b/b/3.exe '); 測試複製檔案建立一個b/b資料夾,並把b/1/2資料夾中的3.exe檔複製進去
- * FileUtil::moveDir('a/','b/c' ); 測試移動資料夾建立一個b/c資料夾,並把a資料夾下的內容移動進去,並刪除a資料夾
- * FileUtil::moveFile('b/1/2/3.exe' ,'b/d/3.exe');測試移動檔案建立一個b/d資料夾,並把b/1/2中的3.exe移動進去
- * FileUtil::unlinkFile('b/d /3.exe'); 測試刪除檔案刪除b/d/3.exe檔案
- * FileUtil::unlinkDir('d');測試刪除資料夾刪除d資料夾
- */
- class FileUtil {
- /**
- * 建立資料夾
- *
- * @param string $aimUrl
- * @return viod
- */
- function createDir($aimUrl) {
- $aimUrl = str_replace('', '/', $aimUrl);
- $aimDir = '';
- $arr =explode('/', $aimUrl);
- $result = true;
- foreach ($arr as $str) {
- $aimDir .= $str . '/';
- if (!file_exists($aimDir)) {
- $result = mkdir($aimDir);
- }
- }
- return $result;
- }
- }
- return $result;
- }
- }
- return $result;
- }
- }
- return $result;
- } p>
/**
- * 建立檔案
- *
- * @param string $aimUrl
- * @param boolean $overWrite 此參數控制是否覆寫原始檔案
- * @return boolean
- */
- function createFile($aimUrl, $overWrite = false) {
- if (file_exists($aimUrl) && $overWrite == false) {
- return false;
- } elseif (file_exists($aimUrl) && $overWrite == true) {
- FileUtil :: unlinkFile($aimUrl);
- }
- $aimDir = 目錄名($ targetUrl);
- FileUtil :: createDir($aimDir);
- touch($aimUrl);
- 回傳true;
- }
/**
- * 行動資料夾
- *
- * @param string $oldDir
- * @param string $aimDir
- * @param boolean $overWrite 此參數控制是否覆寫原始檔案
- * @ return boolean
- */
- function moveDir($oldDir, $aimDir, $overWrite = false) {
- $aimDir = str_replace('', '/', $aimDir);
- $aimDir = substr($aimDir, -1) == '/' ? $aimDir : $aimDir 。 $oldDir : $oldDir 。 :: createDir($aimDir) );
- }
- @ $dirHandle = opendir($oldDir);
- if (!$dirHandle) {
- return false;
- }
- }
- while (false !== ($ file = readdir($dirHandle))) {
- if ($file == '.' || $file == '..') {
- continue;
- }
- if (!is_dir ($oldDir . $file)) {
- FileUtil :: moveFile($oldDir . $file, $aimDir . $file, $overWrite);
- } else {
- FileUtil> :: moveDir($oldDir . $file, $aimDir . $file, $overWrite);
- }
- }
- closedir($dirHandle);
- return rmdir($oldDir);
-
- }
/**
- * 移動檔案
- *
- * @param string $fileUrl
- * @param string $aimUrl
- * @param boolean $overWrite 此參數控制是否覆寫原始檔案
- * @return boolean
- */
- function moveFile($fileUrl, $aimUrl, $overWrite = false) {
- if (!file_exists($fileUrl)) {
- return false;
- }
- if (file_exists($aimUrl) && $overWrite = false) {
- return false;
- } elseif (file_exists($aimUrl) &true $. {
- FileUtil :: unlinkFile($aimUrl );
- }
- $aimDir = dirname($aimUrl); FileUtil :: createDir($aimDir); FileUtil :: createDir($aimDir); $aimUrl); 回傳true; }
/**
- * 刪除資料夾
- *
- * @param string $aimDir
- * @return boolean
- */
- function unlinkDir($aimDir) {
- $aimDir = str_replace('', '/', $aimDir);
- $aimDir = substr($aimDir, -1 ) == '/' ? $aimDir : $aimDir 。 false !== ($ file = readdir($dirHandle))) {
- if ($file == '.' || $file == '..') {
- continue;
- }
- if (!is_dir ($aimDir . $file)) {
- FileUtil :: unlinkFile($aimDir . $file);
- } else { FileUtil :: unlinkDir($aimDir . $. $ ;
- }
- }
- closedir($dirHandle);
- return rmdir($aimDir);
- }
/**
- * 刪除檔案
- *
- * @param string $aimUrl
- * @return boolean
- */
- function unlinkFile($aimUrl) {
- if (file_exists($aimUrl)) {
- unlink($aimUrl);
- return true;
- } else {
- 返回; 🎜> }
- }
/**
- * 複製資料夾
- *
- * @param string $oldDir
- * @param string $aimDir
- * @param boolean $overWrite 此參數控制是否覆蓋原檔案
- * @ return boolean
- */
- 函數copyDir($oldDir, $aimDir, $overWrite = false) {
- $aimDir = str_replace ('', '/', $aimDir);
- $aimDir = substr($aimDir, -1) == '/' ? $aimDir : $aimDir 。 $oldDir : $oldDir 。 :: createDir($aimDir) );
- }
- $dirHandle = opendir($oldDir);
- while (false !== ($file = readdir($dirHandle))) {
- if ($file == '.' || $file == '..') {
- 繼續;
- }
- if (!is_dir($oldDir . $file)) {
- FileUtil : : copyFile($oldDir . $file, $aimDir . $file, $overWrite);
- } else {
- FileUtil :: copyDir($oldDir . $file, $aimDir . $file, $overWrite); }
- }
- return closeir($dirHandle);
- }
/**
- * 複製檔案
- *
- * @param string $fileUrl
- * @param string $aimUrl
- * @param boolean $overWrite 此參數控制是否覆寫原始檔案
- * @return boolean
- */
- function copyFile($fileUrl, $ , $overWrite = false) {
- if (!file_exists($fileUrl)) {
- return false;
- }
- if (file_exists($aimUrl) && $overWrite 🎜> if (file_exists($aimUrl) && $overWrite == false) { return false;
- } elseif (file_exists($aimUrl) && $overWrite == true) {
- FileUtil :: unlinkFile( $aimUrl);
- }
- $aimlinkFile( $aimUrl);
- }
- $aimDir =Uirname($aimDir =Uirname$aimD ;
- FileUtil :: createDir($aimDir);
- copy($fileUrl, $aimUrl);
- 回傳true;
- }
- }
- ?>
-
-
-
-
- 複製程式碼
-
-
- 另一種呼叫方式(非靜態調用):
-
-
-
-
-
- $fu = new FileUtil();
- $fu->copyFile('a/1/2/3', 'a/1 / 2/4');
複製程式碼
|