foreach(new RecursiveIteratorIterator(new RecursiveDirectoryIterator(".")) as $file) {
  echo "$file\n";
}

Is there any way for this code to not throw UnexpectedValueException "failed to open dir: Permission denied" whenever there is a unreadable subdirectory inside directory I attempt to list?

UPDATE

Converting foreach() to while() and explicitly calling Iterator::next() wrapped in try() catch {} doesn't help. This code:

$iter = new RecursiveIteratorIterator(new RecursiveDirectoryIterator("."));
while($iter->valid()) {
    $file = $iter->current();
    echo "$file\n";
    try {
        $iter->next();
    } catch(UnexpectedValueException $e) {
    }
};

is an infinite loop if there is unreadable subdirectory.

link|improve this question

wrap it into try catch blocks. and it seems to be a bad ideea to create new objects right inside foreach parentheses – s3v3n Dec 28 '10 at 16:34
To Elaborate on s3v3n's comment. It seems to be a bad idea, because what exactly is going on is very hard to determine. Good code isn't always the smallest or fastest code. – DampeS8N Dec 28 '10 at 16:38
It's not hard to determine what happens if you know what is RecursiveIteratorIterator and RecursiveDirectoryIterator and what is their common use case. It's simple code. – Kamil Szot Dec 28 '10 at 16:48
@s3v3n You gave me an idea of transforming foreach into while and explicitely calling iterator next() inside try {} catch. Unfortunately it doesn't work. – Kamil Szot Dec 28 '10 at 16:58
feedback

3 Answers

up vote 7 down vote accepted

Apparently you can pass $flags parameter to constructor. There's only one flag in the docs, but it does exactly what you want: catches exceptions during getChildren() calls and simply jumps to the next element.

Change your class creation code to

new RecursiveIteratorIterator(
    new RecursiveDirectoryIterator("."), 
    RecursiveIteratorIterator::LEAVES_ONLY,
    RecursiveIteratorIterator::CATCH_GET_CHILD);

and it should work

link|improve this answer
That's exactly what I needed. Thank you very much! – Kamil Szot Dec 28 '10 at 22:57
feedback

You could do something like this :

class ReadableFilter extends RecursiveFilterIterator{
    public function accept(){
            return $this->current()->isReadable();
    }
}

$filteredIterator = new RecursiveIteratorIterator(new ReadableFilter(new RecursiveDirectoryIterator(".")));

foreach ($filteredIterator as $file){
    echo "$file\n";
}
link|improve this answer
That's very interesting. – Kamil Szot Dec 28 '10 at 22:58
feedback

It's possible that the iterator position will still be valid even if a directory is not readable.

You could check the state of the directory entry. Sloppy untested sample code:

$iter = new RecursiveIteratorIterator(new RecursiveDirectoryIterator("."));
foreach ($iter as $dir) {
    if($dir->isReadable()){
        //do something
    }
}
link|improve this answer
It doesn't work. Exception is thrown as iterator advances to next position. – Kamil Szot Dec 28 '10 at 22:59
feedback

Your Answer

 
or
required, but never shown

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