Tagged Questions
7
votes
3answers
345 views
Can I make RecursiveDirectoryIterator skip unreadable directories?
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: ...
1
vote
2answers
661 views
How to walk a directory over a local network using PHP?
How can i list the contents of a windows share using PHP?
$SearchFolder = "\\\\192.168.1.100\\pdfoutput\\";
if (is_dir($SearchFolder))
{
if ($Directory = opendir($SearchFolder))
{
while ...