LoginSignup
25
23

More than 5 years have passed since last update.

ディレクトリを再帰的に削除する方法のメモ

Last updated at Posted at 2012-12-26
  • RecursiveIteratorIteratorを使うと楽。
<?php
$dir = '/path/to/dir';

$files = new RecursiveIteratorIterator(
    new RecursiveDirectoryIterator($dir, FilesystemIterator::SKIP_DOTS),
    RecursiveIteratorIterator::CHILD_FIRST
);

foreach ( $files as $file )
{
    if ( $file->isDir() === true )
    {
        rmdir($file->getPathname());
    }
    else
    {
        unlink($file->getPathname());
    }
}

rmdir($dir);
25
23
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
25
23