文件系統基本操作類

PHP代碼:——————————————————————————– array("files","dirs","size"), * "list"=>array( * array("name","locate","type","size","last_access","last_change","last_modify"), * …… * ) * ) * ******** * ******** * **** seek_file($pattern, $dir_path, $seek_type, $sub_dir, $interal, $limit); * 根據正則表達式條件,在相應目錄及給定層次的子目錄中搜索匹配的文件、目錄。 * $pattern 符合 PERL 兼容標準的正則表達式,無須添加 //,系統自行添加 * $seek_type 有 -1 0 1 三種可能值,0 僅文件夾,1 僅文件,-1 兩者都包括 * $sub_dir 數字值,搜索的子目錄深度,指定目錄不算,建議不要超過 5 * $interal 佈爾值,為真則返回搜索結果的詳細信息,否則隻返回文件名、類型及所在目錄 * $limit 數字值,搜索結果限制,避免過度浪費系統資源 * 若有錯誤返回 FALSE,否則返回 * array( * array( * "name","locate","type" * [,"size","last_access","last_change","last_modify"] * ), * …… * ) * ******** * ******** * **** delete($path); * 刪除指定對象,文件或文件夾——包括內含子目錄和文件的非空文件夾。 * $path 字符串,指定要刪除的內容路徑,文件或目錄均可 * 如有錯誤在錯誤處中斷,返回 FALSE,否則返回 TRUE * ******** * ******** * **** make_dir($path); * 建立任意文件夾,相對或絕對路徑皆可,深層建立亦可。 * $path 字符串,要建立的最終目錄路徑 * 如有錯誤返回 FALSE,否則返回 TRUE * ******** * ******** * **** verify_file($src, $dst, $interal); * 使用 MD5 算法比較兩個文件是否相同。 * $src 字符串,源文件路徑 * $dst 字符串,目標文件路徑 * $interal 佈爾值,對於大於 1M 文件,可以設置為 FALSE 以省去 MD5 檢驗步驟,減輕服務器負擔 * 若有錯誤返回 FALSE,否則返回 TRUE * ******** * ******** * **** copy($src_path, $dst_path); * 對任意文件夾、文件進行復制,相對或絕對路徑皆可,文件復制完成後會進行效驗,檢查是否出錯數據錯誤。 * $src_path 字符串,指定要復制的源內容路徑,文件或目錄均可 * $dst_path 字符串,指定要復制的目標內容路徑,文件或目錄均可,性質由 $src_path 決定,可為 $src_path 下層目錄 * 若有錯誤返回 FALSE,否則返回 TRUE * ******** * ******** * **** move($src_path, $dst_path); * 對任意文件夾、文件進行移動,相對或絕對路徑皆可,文件移動完成後會進行效驗,檢查是否出錯數據錯誤。 * $src_path 字符串,指定要移動的源內容路徑,文件或目錄均可 * $dst_path 字符串,指定要移動的目標內容路徑,文件或目錄均可,性質由 $src_path 決定,可為 $src_path 下層目錄 * 若有錯誤返回 FALSE,否則返回 TRUE * * [版權] * 風雨明清(SNakeVil@51js, SNakeVil@BU)獨立設計完成,保留一切權力。 * 隨意使用,但請勿必保留下面的文本,謝謝! * * ===========Z================= * Class.IO.v1.0.0.0.build040325 * for.PHP.v4.20+ * by SNakeVil * (snakevil@51js, snakevil@BU) * ——–+—— * QQ:118824 * MSN:snakevil_@hotmail.com * HP:https://www.snakevil.com/ * ===========Z================= * */ class IO { var $error_id; var $result; var $error_related; var $last_exist_dir; function IO() { $this->result = array(); $this->error_id = 0x0000; $this->error_related = ""; $this->last_exist_dir = ""; return $this; } function error_occur($error_id=0xffff,$error_related="") { // —-0xffff—- 發生錯誤,但錯誤原因未知 if (is_int($error_id)) $this->error_id = $error_id; // 獲取錯誤號 $this->error_related = $error_related; return false; // 錯誤發生時返回 FALSE 方便進一步處理 } function list_dir($dir_path=".") { if (!is_dir($dir_path)) return $this->error_occur(0x0001, $dir_path); // —-0x0001—- 指定目錄不存在 if (!$dir_handle=@opendir($dir_path)) return $this->error_occur(0x0002, $dir_path); // —-0x0002—- 指定目錄無權讀取 $result = array( "count" => array("files" => 0, "dirs" => 0, "size" => 0), "list" => array() ); while (false!==($file_handle=readdir($dir_handle))) { // 使用 !== 防止處理名稱為 0 或 FALSE 的文件、目錄 if ($file_handle=="."||$file_handle=="..") continue; // 忽略系統特定的兩個文件夾 $temp = str_replace("", "/", realpath($dir_path)); $temp = substr($temp, -1)=="/" ? $temp : $temp."/"; $temp = array($temp, $file_handle); $file_handle = $temp[0].$temp[1]; // 獲取絕對地址 $temp = array( "name" => $temp[1], "locate" => $temp[0], "type" => @filetype($file_handle), "size" => filesize($file_handle), "last_access" => fileatime($file_handle), "last_modify" => filemtime($file_handle), "last_change" => filectime($file_handle) ); switch ($temp["type"]) { case "file": $temp["type"] = 1; $result["count"]["files"]++; $result["count"]["size"] += $temp["size"]; break; case "dir": $temp["type"] = 0; $result["count"]["dirs"]++; break; default: // !!!! 鑒於 Win32 平臺,對既非文件也非目錄的內容忽略 $temp["type"] = -1; } $result["list"][] = $temp; } closedir($dir_handle); unset($dir_handle, $file_handle, $temp); clearstatcache(); // 清除文件系統緩存 return $this->result = $result; } function seek_file($pattern=".*",$dir_path=".",$seek_type=1,$sub_dir=0,$interal=false,$limit=100) { /* 規范一切可能的參數值 */ $pattern = "/".$pattern."/"; $seek_type = intval($seek_type); $seek_type = $seek_type>0 ? 1 : ($seek_type<0 ? -1 : 0); $sub_dir = abs(intval($sub_dir)); $interal = (bool)$interal; $limit = abs(intval($limit)); if ($limit==0) $limit = 100; $sub_dir_list = array(array($dir_path)); // 將查詢目錄作為子目錄層次的第一層來對待 $result = array(); /* i 當前處理的子目錄層次,0 為指定目錄層,即僅處理一個目錄 */ for ($i=0;$iresult = $result; // 如果某一層子目錄沒有設置,說明實際目錄系統中再無目錄,返回 /* k 每一子目錄層次中子目錄統計,j 當前處理序號 */ for ($j=0,$k=count($sub_dir_list[$i]);$jlist_dir($sub_dir_list[$i][$j]); if (!$l) return $this->result = $result; // 出現錯誤,則立即停止返回現有結果 $l = $l["list"]; /* n 每一子目錄中文件、目錄、其他項目統計,m 為當前處理序號 */ for ($m=0,$n=count($l);$m=$limit) return $this->result = $result; // 如果要求數目已達到,返回 if ($l[$m]["type"]==0) $sub_dir_list[$i+1][] = $l[$m]["locate"].$l[$m]["name"]; // 搜集下一層子目錄信息 $o = $l[$m]["type"]; if ($o!=$seek_type&&($seek_type==1||$seek_type==0)) continue; // 忽略不符合要求的項目 elseif ($o==-1&&$seek_type==-1) continue; if (!preg_match($pattern, $l[$m]["name"])) continue; // 忽略不符合正則表達式的項目 $result[] = $interal ? $l[$m] : array("name" => $l[$m]["name"], "locate" => $l[$m]["locate"], "type" => $l[$m]["type"]); } } } unset($i, $j, $k, $l, $m, $n, $o, $sub_dir_list); return $this->result = $result; } function delete($path="") { if (!file_exists($path)) return $this->error_occur(0x0003, $path); // —-0x0003—- 指定對象不存在 if (is_dir($path)) { $path = str_replace("", "/", realpath($path)); $path = substr($path, -1)=="/" ? $path : $path."/"; $sub_list = array(array($path)); for ($i=0;$i<count($sub_list);$i++) { // 使用 COUNT($SUB_LIST) 動態判斷長度,從而有可能無定長循環 if (!isset($sub_list[$i])) break; // 探索到最盡頭,獲得該目錄下所有子目錄列表,方便文件刪除後刪除目錄 for ($j=0,$k=count($sub_list[$i]);$jlist_dir($sub_list[$i][$j]); if (!$l) return $this->error_occur(&q

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。 必填欄位標示為 *