PHPコーディング

ディレクトリの下の各ファイルの操作

2008年08月15日
PHPでの、任意のディレクトリ($open_dir)の下にあるファイルの操作です。

ディレクトリをオープンして、各ファイルへアクセスします。


$dir = @opendir($open_dir);
if($dir == true){
while($file = readdir($dir)){
  if(($file != ".") && ($file != "..")){
    ファイル操作
      ・
      ・
      ・
  }
}


【.】と【..】は自分自身と、一つ上のディレクトリなので、除外しています。