[insert_php]
$dir = ‘wp-content/uploads/2016/SGC/12- Proceso de Administracion del SGC/2 Procedimiento de control de registros/’;
$files = scandir($dir);
sort($files);
foreach ($files as $file) {
if ($file != ‘.’ && $file != ‘..’) {
echo ««.utf8_encode($file ).»\n»;
}
}
[/insert_php]