17488 Posts in 4473 Topics by 1978 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 907 Views |
-
Problem with folder!

13 September 2008 at 12:12am
Hi!!
I have a problem. I need to read the files that are allocated into a folder in assets/Uploads/Event/.
Well, i dont know how i get the list of files that are in this folder, and i need the list of files that are in the sub-folders.
Thanks for your help!
-
Re: Problem with folder!

13 September 2008 at 1:59am
Hi
Problem solved...
I made this
if (is_dir($dir))
{
if ($dh = @opendir($dir))
{
while (($file = @readdir($dh)) !== false)
{
$lista.="Archivo: $file : Extensión: " . filetype($dir . $file) . "<br>";
}
}
}
@closedir($dh);but the dir must be start with /var/www/mysite/assets/Uploads/folder/
-
Re: Problem with folder!

13 September 2008 at 2:05am
You can use internal SS DataObject functions for this as well... ...
That would look something like this :
$left_dir = DataObject::get_one("Folder", "Name = \"directoryname\"");
$all_files = DataObject::get("File","ParentID = $left_dir->ID");
| 907 Views | ||
|
Page:
1
|
Go to Top |

