up home page bottom

Add a comment

French German version Spanish version Italian version

PHP - Directory Listing

1 Star5 Stars (No Ratings Yet)
Loading ... Loading ...

Just thought I'd end the night with a simple script. This PHP script will list all file, directory, and sub directories, and will even make links out of them.

PHP:
  1. <p id="innersource" class="nowrap">
  2. <pre class="php">//define the path as relative
  3.  
  4. $path = "/home/yoursite/public_html/whatever";
  5.  
  6. //using the opendir function
  7.  
  8. $dir_handle = @<a href="http://www.php.net/opendir">opendir</a>($path) or <a href="http://www.php.net/die">die</a>("Unable to open $path");
  9.  
  10. <a href="http://www.php.net/echo">echo</a> "Directory Listing of $path&lt;br/&gt;";
  11.  
  12. //running the while loop
  13.  
  14. while ($file = <a href="http://www.php.net/readdir">readdir</a>($dir_handle))
  15.  
  16. {
  17.  
  18. //encode spaces
  19.  
  20. $file =  <a href="http://www.php.net/rawurlencode">rawurlencode</a>($file);
  21.  
  22. // convert the + (this is one result from the function rawurlencode) in %20
  23.  
  24. $url = <a href="http://www.php.net/str_replace">str_replace</a>('+' , '%20' , $file);
  25.  
  26. <a href="http://www.php.net/echo">echo</a> "&lt;a href='".$url."'&gt;".$url."&lt;/a&gt;&lt;br/&gt;";
  27.  
  28. }
  29.  
  30. //closing the directory
  31.  
  32. <a href="http://www.php.net/closedir">closedir</a>($dir_handle);</pre>

Spread the Love: These icons link to social bookmarking sites where readers can share and discover new web pages.
  • Digg
  • TwitThis
  • Technorati
  • del.icio.us
  • Facebook
  • Sphinn
  • Mixx
  • Google
  • Live
  • YahooMyWeb
  • blogmarks
  • BlogMemes
  • co.mments
  • Fark
  • feedmelinks
  • Gwar
  • Linkter
  • Netvouz
  • Smarking
  • Socialogs
  • Taggly
  • Yigg

1 Comment so far »

  1. mike james said,

    Wrote on March 6, 2008 @ 2:25 am

    Be the first to join our brand new SEO oriented directory
    and enjoy our amazing limited time offer.

    Visit our website: http://www.directorymh.com and don't forget to tell your friends.

    Directorymh team.

Comment RSS · TrackBack URI

Leave a Comment

Leave a comment or send a note
  1. (required)
  2. (valid email required)
  3. (required)
  4. Send
 

cforms contact form by delicious:days