Re: [PHP] DirectoryIterator

[email protected] ("Jo?o C?ndido de Souza Neto")
Newsgroups php.general
Message-ID <[email protected]>
Thank you Nathan.

As soon as the PHP documentation does not mention the getRealPath() method, 
I couldn´t realize that this could be done.

-- 
João Cândido de Souza Neto

"Nathan Nobbe" <[email protected]> escreveu na mensagem 
news:[email protected]...
2010/8/2 João Cândido de Souza Neto <[email protected]>

> Is there a way of getting the symbolic link's target when using
> DirectoryIterator?
>

as DirectoryIterator traverses the contents of a directory, the current()
method will return an SplFileInfo instance.

Using the SplFileInfo, you can determine if the entry is a link and if so,
dereference it

http://www.php.net/manual/en/splfileinfo.islink.php

(note: $oFile is internally being populated via $oIt->current())

<?php
$oIt = new DirectoryIterator('./');
foreach($oIt as $oFile)
  if($oFile->isLink())
  {
    echo 'link found' . PHP_EOL;
    echo 'link points to: ' . $oFile->getRealPath() . PHP_EOL;
  }
?>

-nathan
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.