I need to list all files (which have certain extensions) in a folder and its sub-folders. I used RecursiveIteratorIterator as described in @Matthew 's great answer in PHP list all files in directory.
- I'm setting the root of the search to ".." and all filenames get a prefix of "../". How can I get the filename only?
- How can I get, in addition to the filename, its parent folder name?
- ...and how can I get the full path of the filename?
And one last thing: displaying a file-tree, or maybe all directories that have no sub-directories, are both examples of things that one might want to do when dealing with files. How would you recommend to pass this data to the client side and how would the data structure look like?