rendered paste body<?php$webUrl = '';$myDirectory = opendir('.');while($entryName = readdir($myDirectory)) { $dirArray[] = $entryName;}closedir($myDirectory);$file_stack = array();for($i = 0; $i < count($dirArray); $i++) { if(preg_match('/^\.+$/', $dirArray[$i])) continue; $file_stack[]['url'] = $webUrl . '/' . $dirArray[$i]; $file_stack[]['filename'] = $dirArray[$i]; $file_stack[]['filesize'] = filesize($dirArray[$i]); $file_stack[]['filetype'] = filetype($dirArray[$i]);}echo json_encode($file_stack);?>~