回复@qufudj :
v1.6编码问题存在,比如文件名有空格,解决方法: DirList.class.php 文件search_files,list_dir俩函数中 搜索 $src = './' . implode('/', array_map('rawurlencode', explode('/', $relativePath))); 替换 if ($conf['name_encode'] == 'utf8') {   $src = './' . implode('/', array_map('rawurlencode', explode('/', $relativePath)));//utf-8 } elseif ($conf['name_encode'] == 'gbk') {   $src = './' . implode('/', array_map('rawurlencode', explode('/', $relativePathEncode)));//gbk }
请勾选本项再提交评论