Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
RaspBerry
/
Dev
/
php-image-motion-master
:
Util.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<? function listFilesInDirectory($path) { $ia = array(); $ih = @opendir($path) or die("Unable to open f $path"); while ($img = readdir($ih)) { if(is_dir($path.$img) || $img == "." || $img == ".." || $img == "thumb" || $img == "Thumbs" || $img == "thumbs" || $img == "Thumbs.db" ) continue; $ia[] = $img; } closedir($ih); return $ia; } ?>