php
の DirectoryIterator と RecursiveDirectoryIterator
PHP では、DirectoryIterator を使用して、指定したディレクトリ内のファイルまたはディレクトリを取得できます。
$path = "/tmp";
$oDir = new DirectoryIterator($path);
foreach($oDir as $file)
{
if($file->isfile())
{
$tmpFile['link'] = $file->getPath();
$tmpFile['name'] = $file->getFileName();
$tmpFile['type'] = 'file';
$tmpFile['size'] = _cal_size($file->getSize());
$tmpFile['mtime'] = $file->getMTime();
$arrFile[] = $tmpFile;
}
}
print_r($arrFile);
/* output
Array
(
[0] => Array
(
[link] => /tmp
[name] => scim-panel-socket-:0-root
[type] => dir
[size] => 0b
[mtime] => 1222049895
)
[1] => Array
(
[link] => /tmp
[name] => .font-unix
[type] => dir
[size] => 4k
[mtime] => 1241417372
)
)
*/
RecursiveDirectoryIterator は、サブディレクトリを含むディレクトリ内のすべてのファイルを取得し、
RecursiveIteratorIterator とともに使用します。 .
(RecursiveIteratorIterator は再帰反復子であり、その後にオプションの 4 つのパラメータ (いずれか 1 つだけ) が続きます
RecursiveIteratorIterator::LEAVES_ONLY
デフォルトでは、__construct で設定されています。
関数は次のとおりです。枝と葉を削除し、空のノードをスキップし、実際の値のみを再帰的に取得します。
例は次のとおりです。
1. フォルダーからファイルを再帰的に取得する場合、フォルダー自体をスキップし、フォルダー内のファイルのみを取得します。出力項目はファイル (すべてのレベルのファイルとサブフォルダー)
2. 多次元配列は最初の数次元のキーをスキップし、値を取得します。各項目の出力は配列
3 です。値 (テキスト) を受け取り、ノード名は出力しません。もちろん、出力される項目の 1 つとして、最初に親、次に子となる
RecursiveIteratorIterator ::CHILD_FIRST
上記と同じですが、順序は長男、親の順です。./test/test.php は ./test (フォルダー) Front)
$path = "/tmp/ ";
$objects = new RecursiveIteratorIterator(new RecursiveDirectoryIterator($path));
foreach($objects as $object)
{
$tmpFile['link'] = $object-> getPath();
$tmpFile['name'] = $object->getFileName();
$tmpFile['type'] = $object->isFile() ? ';
$tmpFile['size'] = _cal_size($object->getSize());
$tmpFile['mtime'] = $object->getMTime(); [] = $tmpFile;
print_r($arrFile);
/*
出力:
配列
(
[0] => 配列
(
[リンク] => /tmp
[名前] => scim-panel-socket-:0-root
[タイプ] => dir
(
[リンク] => /tmp/.font-unix
[名前] => fs7100
] = > 1241417372
) )
)
*/
別の例を見てください:
/*** ターゲットディレクトリ、末尾のスラッシュなし ***/
$directory = './';
try
{
/*** 有効なディレクトリがあるかどうかを確認してください ***/
if( !is_dir($directory) )
{
throw new Exception('ディレクトリが存在しません!'."n");
}
/*** ファイルの名前を変更する権限があるかどうかを確認してください ***/
if( !is_writable( $directory ))
{
$string)
{
return preg_replace('/s /', ' ', $string);
}
/**
* @ファイル名を適切な名前に変換
*
* @param string $filename
*
* @return string
*
*/
functionsafe_names($filename)
{
$filename =collapseWhiteSpace($filename);
$filename = str_replace(' ', '-', $filename);
$filename = preg_replace('/[^a-z0-9-.]/i '、' '、$ fileName);
return strtolower($ filename);
}
$ it = new RecursiveTeratoritator(new Recursivedirectoryiterator($ directory、0));
/* ** オブジェクトを直接ループします ***/
while($it->valid())
{
/*** 値がディレクトリであるかどうかを確認します ***/
if(!$it->isDot())
{
if(!is_writable($directory.'/'.$it->getSubPathName()))
{
echo 'P権限が拒否されました: '.$directory.'/'。 $it->getSubPathName()."n";
}
else
{
/*** 古いファイル名 ***/
$old_file = $directory.'/'.$ it->getSubPathName();
/*** 新しいファイル名 ***/
$new_file = $directory.'/'.$it->getSubPath().'/'.safe_names( $it->current());
/*** ファイルの名前を変更します ***/
rename ($old_file, $new_file);
/*** ファイルが変換されたことを示す小さなメッセージ ***/
「 の名前を変更しました 」をエコーします。 $directory.'/'.$it->getSubPathName() ."n";
}
}
/*** 次の反復に移動 ***/
$it->next () ;
}
/*** すべてが完了したら、ユーザーに知らせます ***/
echo 'ファイル名の変更が完了しました'."n";
}
catch(Exception $e)
{
echo $e->getMessage()."n";
}
?>