Jump to content

[SOLVED] Using ScanDir to get list of directories with extra info


Julie-San

Recommended Posts

k well then you would actually need

 

Ingredients:

1 opendir

1 while loop

1 readdir

1 if condition

1 is_dir

1 filemtime

1 closedir

1 asort or arsort

 

Instructions:

assign opendir to a variable. create a loop with the while, with readdir as the condition.  inside the loop, check if the current file is a directory, with is_dir.  If it is, create an array called $dirs with the file name as the key, and the last modified time as the value (using filemtime). after the loop, close the dir with closedir, and use asort for ascending sort by last modified time, or arsort for descending ordering.

 

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.