ID: 9234
Updated by: derick
Reported By: [EMAIL PROTECTED]
Old-Status: Open
Status: Duplicate
Bug Type: Directory function related
Assigned To: 
Comments:

This is all ready known. It's on the todo list for now (and it was submitted earlier 
so marking it duplicate)

Previous Comments:
---------------------------------------------------------------------------

[2001-02-12 20:17:07] [EMAIL PROTECTED]
Access to windows shares via the network used to be possible with php3.0.16. Now they 
just don't show up.
ie
A windows share "\NTServerwwwroot" cannot be accessed anymore. The permissions for the 
directory are set correctly but it still fails.

Below is some test code. It is possible your text input box in the form may stuff up 
the formatting of the code.
---------------------------------
<h1>Files listing</h1>

<?
#$directory = "\\nt4server\wwwroot";
$directory = "\\cwdevel\ddrive\BCCINET\WWWROOT\";
#$directory = "d:\inetpub\wwwroot\businessservices\";
#$directory = "d:\inetpub\wwwroot\publishing\";

function dirfilecopy($basedir,$dir="",$files = ""){

        if($files == "")
                $files = array();
                
        # SET LIST OF VALID EXTENSIONS TO BE USED IN REGEXP
        $extensionlist = 
".asp$|.class$|.css$|.dat$|.dnp$|.doc$|.exe$|.gif$|.htm$|.html$|.inc$|.jpg$|.js$|.pia$|.pdf$|.phtml$|.php3$|.stm$|.shtm$|.shtml$|.wpd$|.xls$|.zip$";

        $fileignore = "^Copy of";
        
        
        if(is_dir($basedir.$dir))
                echo "This is a directory<BR>";
        else
                echo "Nope<BR>";
                
        $d = dir($basedir.$dir);
        echo "Handle: ".$d->handle."<br>n";
        echo "Path: ".$d->path."<br>n";
        while($entry=$d->read()) {

                if(is_dir($basedir.$dir.$entry) && ($entry != ".") && ($entry != 
"..")){
                        $files = dirfilecopy($basedir,$dir.$entry."\",$files);
                }else{
                        if(!eregi($fileignore,$entry)){
                                if(eregi($extensionlist,$entry)){               
                                $files[] = $dir.$entry;
                }
        }
                }
        }
        $d->close();

        return($files);
}

$files = dirfilecopy($directory);

for ($i=0; $i<count($files); $i++){
        $info = stat($directory.$files[$i]);
        echo $directory.$files[$i]."   ".date("H:i d F Y",$info[9])."<BR>";
}

?>

---------------------------------------------------------------------------



ATTENTION! Do NOT reply to this email!
To reply, use the web interface found at http://bugs.php.net/?id=9234&edit=2


-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to