-
- /**
- * ファイルディレクトリ操作クラス
- * 編集者: bbs.it-home.org
- * 例:
- * $fileutil = new fileDirUtil();
- * $fileutil->createDir('a/1/2/3') ; 作成フォルダーをテストするには、/1/2/3 フォルダーを作成します
- * $fileutil->createFile('b/1/2/3'); 作成ファイルをテストするには、b/1/ の下に作成します。 2/ フォルダー 3 つのファイル
- * $fileutil->createFile('b/1/2/3.txt'); 作成ファイルをテストするには、b/1/2/ フォルダーの下に 3.exe ファイルを作成します。
- * $fileutil-> ;writeFile('b/1/2/3.txt','これは私が書くものです!'); ファイルにコンテンツを書き込みます
- * $arr = $fileutil->readFile2array('example /mysql.txt') ;
- * $arr = $fileutil->readsFile('example/mysql.txt');
- * $size=$fileutil->bitSize($fileutil->getDirSize("example") )); ファイルまたはディレクトリのサイズを取得します
- * $fileutil->copyDir('b','d/e'); コピー フォルダーをテストして d/e フォルダーを作成し、b フォルダーの内容をコピーします
- * $fileutil-> ;copyFile('b/1/2/3.exe','b/b/3.exe'); ファイルをテストコピーして b/b フォルダーを作成し、3. を入れます。 b/1/2 フォルダーに exe ファイルをコピーします
- * $fileutil->moveDir('a/','b/c'); フォルダーの移動をテストし、b/c フォルダーを作成し、その内容を移動します。 a フォルダーをその中に入れて、フォルダーを削除します
- * $fileutil->moveFile('b/1/2/3.exe','b/d/3.exe'); ファイルの移動をテストして b/ を作成しますdフォルダーにb/を置き、3.exeを1/2に移動します
- * $fileutil->unlinkFile('b/d/3.exe'); ファイルの削除をテストし、b/d/3を削除します。 exe ファイル
- * $fileutil->unlinkDir ('d'); d フォルダーを削除するためのテスト削除フォルダー
- * $list = $fileutil->dirList("E:example");ディレクトリ
- * $list = $fileutil ->dirTree("/"); テスト リスト フォルダー ツリーは、ディレクトリ内のすべてのファイルの直接のツリー関係をリストします
- */
- class fileDirUtil {
- /**
- * フォルダーを作成します
- *
- * @param string $aimUrl
- * @return viod
- */
- function createDir($aimUrl, $mode = 0777) {
- $aimUrl = str_replace ( '', '/', $aimUrl );
- $aimDir = '';
- $arr = 爆発 ( '/', $aimUrl );
- foreach ( $arr as $str ) {
- $aimDir .= $str . '/';
- if (! file_exists ( $aimDir )) {
- mkdir ( $aimDir, $mode );
- }
- }
- }
- /**
- * ファイルを作成します
- *
- * @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) {
- $this->unlinkFile ( $aimUrl );
- }
- $aimDir = ディレクトリ名 ( $aimUrl );
- $this->createDir ( $aimDir );
- タッチ ( $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 = str_replace ( '', '/', $oldDir );
- $oldDir = substr ( $oldDir, - 1 ) == '/' ? $oldDir : $oldDir 。 '/';
- if (! is_dir ( $oldDir )) {
- false を返します。
- }
- if (! file_exists ( $aimDir )) {
- $this->createDir ( $aimDir );
- }
- @$dirHandle = opendir ( $oldDir );
- if (! $dirHandle) {
- false を返します。
- }
- while ( false !== ($file = readdir ( $dirHandle )) ) {
- if ($file == '.' || $file == '..') {
- 続行;
- }
- if (! is_dir ( $oldDir . $file )) {
- $this->moveFile ( $oldDir . $file, $aimDir . $file, $overWrite );
- } else {
- $this->moveDir ( $oldDir . $file, $aimDir . $file, $overWrite );
- }
- }
- closedir ( $dirHandle );
- 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 ) && $overWrite = true) {
- $this->unlinkFile ( $aimUrl );
- }
- $aimDir = ディレクトリ名 ( $aimUrl );
- $this->createDir ( $aimDir );
- 名前を変更します ( $fileUrl, $aimUrl );
- true を返します。
- }
- /**
- * フォルダーを削除
- *
- * @param string $aimDir
- * @return boolean
- */
- function unlinkDir($aimDir) {
- $aimDir = str_replace ( '', '/', $aimDir );
- $aimDir = substr ( $aimDir, - 1 ) == '/' ? $aimDir : $aimDir 。 '/';
- if (! is_dir ( $aimDir )) {
- return false;
- }
- $dirHandle = opendir ( $aimDir );
- while ( false !== ($file = readdir ( $dirHandle )) ) {
- if ($file == '.' || $file == '..') {
- 続行;
- }
- if (! is_dir ( $aimDir . $file )) {
- $this->unlinkFile ( $aimDir . $file );
- } else {
- $this->unlinkDir ( $aimDir . $file );
- }
- }
- closedir ( $dirHandle );
- rmdir ( $aimDir ) を返します。
- }
- /**
- * ファイルを削除します
- *
- * @param string $aimUrl
- * @return boolean
- */
- function unlinkFile($aimUrl) {
- if (file_exists ( $aimUrl )) {
- unlink ( $aimUrl );
- true を返します。
- } else {
- false を返します。
- }
- }
- /**
- * フォルダーをコピー
- *
- * @param string $oldDir
- * @param string $aimDir
- * @param boolean $overWrite このパラメータは、元のファイルを上書きするかどうかを制御します
- * @return boolean
- */
- function copyDir($oldDir, $aimDir, $overWrite = false) {
- $aimDir = str_replace ( '', '/', $aimDir );
- $aimDir = substr ( $aimDir, - 1 ) == '/' ? $aimDir : $aimDir 。 '/';
- $oldDir = str_replace ( '', '/', $oldDir );
- $oldDir = substr ( $oldDir, - 1 ) == '/' ? $oldDir : $oldDir 。 '/';
- if (! is_dir ( $oldDir )) {
- false を返します。
- }
- if (! file_exists ( $aimDir )) {
- $this->createDir ( $aimDir );
- }
- $dirHandle = opendir ( $oldDir );
- while ( false !== ($file = readdir ( $dirHandle )) ) {
- if ($file == '.' || $file == '..') {
- 続行;
- }
- if (! is_dir ( $oldDir . $file )) {
- $this->copyFile ( $oldDir . $file, $aimDir . $file, $overWrite );
- } else {
- $this->copyDir ( $oldDir . $file, $aimDir . $file, $overWrite );
- }
- }
- return Closedir ( $dirHandle );
- }
- /**
- * ファイルをコピー
- *
- * @param string $fileUrl
- * @param string $aimUrl
- * @param boolean $overWrite このパラメータは、元のファイルを上書きするかどうかを制御します
- * @return boolean
- */
- function copyFile($fileUrl, $aimUrl, $overWrite = false) {
- if (! file_exists ( $fileUrl )) {
- return false;
- }
- if (file_exists ( $aimUrl ) && $overWrite == false) {
- return false;
- } elseif (file_exists ( $aimUrl ) && $overWrite == true) {
- $this->unlinkFile ( $aimUrl );
- }
- $aimDir = ディレクトリ名 ( $aimUrl );
- $this->createDir ( $aimDir );
- コピー ( $fileUrl, $aimUrl );
- true を返します。
- }
- /**
- * 文字列をファイルに書き込む
- *
- * @param string $filename ファイル名
- * @param boolean $str 書き込む文字データ
- */
- function writeFile($filename, $str) {
- if (function_exists ( file_put_contents )) {
- file_put_contents ( $filename, $str );
- } else {
- $fp = fopen ( $filename, "wb" );
- fwrite ( $fp, $str );
- fclose ( $fp );
- }
- }
- /**
- * ファイルの内容全体を文字列に読み込みます
- *
- * @param string $filename ファイル名
- * @return array
- */
- function readsFile($filename) {
- if (function_exists ( file_get_contents )) {
- return file_get_contents ( $filename );
- } else {
- $fp = fopen ( $filename, "rb" );
- $str = fread ( $fp, ファイルサイズ ( $filename ) );
- fclose ( $fp );
- $str; を返します。
- }
- }
- /**
- * ファイルの内容を配列に読み込みます
- *
- * @param string $filename ファイル名
- * @return array
- */
- function readFile2array($filename) {
- $file = file ( $filename );
- $arr = 配列();
- foreach ( $file as $value ) {
- $arr [] = トリム ( $value );
- }
- $arr を返します。
- }
- /**
- * / に変換します
- *
- * @param string $path パス
- * @return string パス
- */
- function dirPath($path) {
- $path = str_replace ( '\', '/', $path );
- if (substr ( $path, - 1 ) != '/')
- $path = $path 。 '/';
- $path を返す;
- }
- /**
- * ディレクトリ配下のすべてのファイルエンコード形式を変換します
- *
- * @param string $in_charset 元の文字セット
- * @param string $out_charset 対象の文字セット
- * @param string $dir ディレクトリアドレス
- * @param string $fileexts 変換されたファイルformat
- * @return string 元の文字セットとターゲットの文字セットが同じ場合は false を返し、それ以外の場合は true を返します
- */
- function dirIconv($in_charset, $out_charset, $dir, $fileexts = 'php|html|htm|shtml|shtm|js|txt|xml') {
- if ($ in_charset == $out_charset)
- false を返します。
- $list = $this->dirList ( $dir );
- foreach ( $list as $v ) {
- if (preg_match ( "/.($fileexts)/i", $v ) && is_file ( $v )) {
- file_put_contents ( $v, iconv ( $in_charset, $out_charset , file_get_contents ( $v ) ) );
- }
- }
- true を返します。
- }
- /**
- * ディレクトリ内のすべてのファイルをリストします
- *
- * @param string $path パス
- * @param string $exts 拡張子
- * @param array $list 追加されたファイルリスト
- * @return 条件を満たすすべてのファイルを配列
- */
- function dirList($path, $exts = '', $list = array()) {
- $path = $this->dirPath ( $path );
- $files = glob ( $path . '*' );
- foreach ( $files as $v ) {
- $fileext = $this->fileext ( $v );
- if (! $exts || preg_match ( "/.($exts)/i", $v )) {
- $list [] = $v;
- if (is_dir ( $v )) {
- $list = $this->dirList ( $v, $exts, $list );
- }
- }
- }
- $list を返します。
- }
- /**
- * ディレクトリ配下のすべてのファイルのアクセスと変更時刻を設定します
- *
- * @param string $path path
- * @param int $mtime 変更時刻
- * @param int $atime アクセス時刻
- * @return array アクセス時刻を返すディレクトリではない場合は false、それ以外の場合は true を返します
- */
- function dirTouch($path, $mtime = TIME, $atime = TIME) {
- if (! is_dir ( $path ))
- return false;
- $path = $this->dirPath ( $path );
- if (! is_dir ( $path ))
- touch ( $path, $mtime, $atime );
- $files = glob ( $path . '*' );
- foreach ( $files as $v ) {
- is_dir ( $v ) ? $this->dirTouch ( $v, $mtime, $atime ) : touch ( $v, $mtime, $atime );
- }
- true を返します。
- }
- /**
- * ディレクトリリスト
- *
- * @param string $dir path
- * @param int $parentid 親 ID
- * @param array $dirs がディレクトリに渡されます
- * @return 配列はディレクトリとサブディレクトリのリストを返します
- */
- function dirTree($dir, $parentid = 0, $dirs = array()) {
- グローバル $id;
- if ($parentid == 0)
- $id = 0;
- $list = glob ( $dir . '*' );
- foreach ( $list as $v ) {
- if (is_dir ( $v )) {
- $id ++;
- $dirs [$id] = array ('id' => $id, 'parentid' => $parentid, 'name' => ベース名 ( $v ), 'dir' => $v . ' /' );
- $dirs = $this->dirTree ( $v . '/', $id, $dirs );
- }
- }
- $dirs を返します。
- }
- /**
- * ディレクトリリスト
- *
- * @param string $dir path
- * @return array ディレクトリリストを返す
- */
- function dirNodeTree($dir) {
- $d = dir ( $dir );
- $dirs = array();
- while ( false !== ($entry = $d->read ()) ) {
- if ($entry != '.' and $entry != '..' and is_dir ( $dir . '/' . $entry )) {
- $dirs[] = $entry;
- }
- }
- $dirs を返します。
- }
- /**
- * ディレクトリのサイズを取得します
- *
- * @param string $dirname directory
- * @return string bit B
- */
- function getDirSize($dirname) {
- if (! file_exists ( $dirname ) または ! is_dir ( $dirname ))
- return false;
- if (! $handle = opendir ( $dirname ))
- false を返します。
- $サイズ = 0;
- while ( false !== ($file = readdir ( $handle )) ) {
- if ($file == "." または $file == "..")
- 続行;
- $file = $dirname 。 「/」。 $ファイル;
- if (is_dir ( $file )) {
- $size += $this->getDirSize ( $file );
- } else {
- $size += ファイルサイズ ( $file );
- }
-
- }
- closedir ( $handle );
- $size を返します。
- }
- /**
- * バイトを Kb または Mb に変換します...
- * パラメータ $size はバイト サイズです
- */
- function bitSize($size) {
- if (! preg_match ( "/^[0-9]+$/", $num ))
- return 0;
- $type = array ("B", "KB", "MB", "GB", "TB", "PB" );
-
- $j = 0;
- while ( $num >= 1024 ) {
- if ($j >= 5)
- return $num 。 $type [$j];
- $num = $num / 1024;
- $j ++;
- }
- $num を返します。 $type [$j];
- }
- /**
- * ファイル名のサフィックスを取得します
- *
- * @param string $filename
- * @return string
- */
- function fileext($filename) {
- return addlashes (trim ( substr ( strrchr ( $filename, '.' ), 1, 10 ) ) );
- }
- }
- ?>
复制代
|