Top

List Files


PHP Code
+ 0 likes
Please Register to submit score.
Average Score  4.5
Scores Submitted  4
Date Added  Feb 20, 2006
Last Updated  Feb 20, 2006
Tags  file  images  php 
  Bookmark and Share

Introduction

This function will grab a list of files/images/etc from a directory and list them as links to that file. Can be very handy, especially with images/image hosts :)


Grab the Code

Comments

  (2)  RSS
Hawkee
Comments: 566
 
PHP Snippet:  List Files
Posted on Feb 20, 2006 11:41 pm
This will only show files one level deep. If you want it to display everything in the directory tree it will need to be a recursive function.
tye
Comments: 67
 
PHP Snippet:  List Files
Posted on Feb 22, 2006 2:02 pm
If you need more than just a list of files, the SPL has a DirectoryIterator object: http://www.php.net/manual/en/function.directoryiterator-construct.php

With it you can do more than just list files, you can also get information about their properties, ownership, permissions, whether or not php can write or read from the file etc.

Please Register or Login to start posting comments.
Bottom