simply edit /resources/DirectoryLister.php
search
“ $directoryArray[pathinfo($relativePath, PATHINFO_BASENAME)] = array( ”
replace with
" preg_match('/\/([^\/]*)$/', $relativePath, $matches);
$pathname = isset($matches[1]) ? $matches[1] : $relativePath;
$directoryArray[$pathname] = array( "
Chinese folder and filename will display correctly.
Thanks,
Jerry