[insert_php]
$dir = ‘wp-content/uploads/2017/SGC2017/II. DIR. GRAL. DE ESTUDIOS DE POSGRADO E INVESTIGACION/SUPERVISION ACAD. E INTERCAMBIO INTER/24. SEGUIMIENTO DE EGRESADOS/REGISTROS SEGUIMIENTO DE EGRESADOS/*.*’;
$files = glob($dir);
sort($files);
foreach ($files as $file) {
if ($file != ‘.’ && $file != ‘..’) {
echo ««.utf8_encode(basename($file) ).»\n»;
}
}
[/insert_php]