vote up 1 vote down star

I'm trying to put some folders on my hard-drive into an array.

For instance, vacation pictures. Let's say we have this structure:

  • Set 1
    • Item 1 of Set 1
    • Item 2 of Set 1
    • Item ... of Set 1
  • Set 2
    • Subset 1 of Set 2
      • Item 1 of Subset 1 of Set 2
      • Item ... of Subset 1 of Set 2
    • Subset 2 of Set 2
    • Random file, not a dir.
  • Set 3
  • ...

I want to have something like that, as an array.
Meaning I have 1 big array and in that array are more arrays. Each set and subset gets its own array.

I'm trying to make it look something like this:

Array
(
    [Set 1] => Array([0] => Item 1 of Set 1, [1] => Item 1 of Set 1,...)
    [Set 2] => Array([Subnet 1] => Array([0] => Item 1 of Subset 1 of Set 2,[1] => ...), [Subnet 2] => Array([0] => ..., ..., ...), ..., [0] => Random File)
    [set 3] => Array(...)
    ...
)

I came across this: http://www.the-art-of-web.com/php/dirlist/

But that's not what I'm looking for. I've been meddling with it but it's giving me nothing but trouble.

Here's an example, view source for larger resolution(no clicking apparently...). Example

flag

3 Answers

vote up 5 vote down check

I recommend using DirectoryIterator to build your array

Here's a snippet I threw together real quick, but I don't have an environment to test it in currently so be prepared to debug it.

$fileData = fillArrayWithFileNodes( new DirectoryIterator( '/path/to/root/' ) );

function fillArrayWithFileNodes( DirectoryIterator $dir )
{
  $data = array();
  foreach ( $dir as $node )
  {
    if ( $node->isDir() && !$node->isDot() )
    {
      $data[$node->getFilename()] = fillArrayWithFileNodes( new DirectoryIterator( $node->getPathname() ) );
    }
    else if ( $node->isFile() )
    {
      $data[] = $node->getFilename();
    }
  }
  return $data;
}
link|flag
I'm getting this error: Fatal error: Maximum function nesting level of '100' reached, aborting! And I don't see why I should get this...highest nesting I have is 5 levels. – WebDevHobo Jun 4 at 20:38
Ok, I got a chance to run this and fixed the bugs - give it another shot. – Peter Bailey Jun 4 at 20:53
What happens now is that whenever I go to a new primary folder, the old ones get overwritten. – WebDevHobo Jun 4 at 22:05
Your original questions asks how to recursively walk over a directory tree and load that data into an array - my answer does that. If you're expecting something more you're going to have to provide more detail. – Peter Bailey Jun 4 at 22:37
Agreed. I drew an example on a white-board and took a picture, you can view it in the original post. I've been working on my own solution and I'm kinda beginning to think that what I'm looking for is impossible. – WebDevHobo Jun 4 at 22:45
show 6 more comments
vote up 0 vote down

A simple implementation without any error handling:

function dirToArray($dir) {
    $contents = array();
    # Foreach node in $dir
    foreach (scandir($dir) as $node) {
        # Skip link to current and parent folder
        if ($node == '.')  continue;
        if ($node == '..') continue;
        # Check if it's a node or a folder
        if (is_dir($dir . DIRECTORY_SEPARATOR . $node)) {
            # Add directory recursively, be sure to pass a valid path
            # to the function, not just the folder's name
            $contents[$node] = dirToArray($dir . DIRECTORY_SEPARATOR . $node);
        } else {
            # Add node, the keys will be updated automatically
            $contents[] = $node;
        }
    }
    # done
    return $contents;
}
link|flag
What happens here is that the directory listing is flattened and all files are listed right after one another. – WebDevHobo Jun 4 at 20:23
I just ran the on part of my music compilation, works as expected. – soulmerge Jun 5 at 8:08
vote up 0 vote down

I've had success with the PEAR File_Find package, specifically the mapTreeMultiple() method. Your code would become something like:

require_once 'File/Find.php';
$fileList = File_Find::mapTreeMultiple($dirPath);

This should return an array similar to what you're asking for.

link|flag
What's this 'File/Find.php' file? I've scanned my harddrive and I have no such file on it. I do have PEAR installed. Might be that I'm using Windows. – WebDevHobo Jun 4 at 20:11

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.