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 |
|
|
Introduction
PHP Snippet:
List Files
Posted on Feb 20, 2006 11:41 pm
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.
PHP Snippet:
List Files
Posted on Feb 22, 2006 2:02 pm
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.
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.




