Recursive Directory Listing (Show full directory structure)


/ Published in: PHP
Save to your folder(s)

Takes advantage of the SPL. Much easier and maintainable than the previous revisions. Haven't done any benchmarks yet but I imagine it is much faster. "If you want to omit directories, remove the RecursiveIteratorIterator::SELF_FIRST part."


Copy this code and paste it in your HTML
  1. <?php
  2. $path = realpath('/etc');
  3.  
  4. $objects = new RecursiveIteratorIterator(new RecursiveDirectoryIterator($path), RecursiveIteratorIterator::SELF_FIRST);
  5. foreach($objects as $name => $object){
  6. echo "$name\n";
  7. }
  8. ?>

URL: http://us2.php.net/manual/en/class.recursivedirectoryiterator.php

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.