// Items volume(项目卷)
array(
'driver' => 'LocalFileSystem', // driver for accessing file system (REQUIRED)
'path' => '../文件/测试文件/', // path to files (REQUIRED)
'URL' => dirname($_SERVER['PHP_SELF']) . '/../文件/测试文件/', // URL to files (REQUIRED)
'trashHash' => 't1_Lw', // elFinder's hash of trash folder
'winHashFix' => DIRECTORY_SEPARATOR !== '/', // to make hash same to Linux one on windows too
'uploadDeny' => array('all'), // All Mimetypes not allowed to upload
'uploadAllow' => array('image/x-ms-bmp', 'image/gif', 'image/jpeg', 'image/png', 'image/x-icon', 'text/plain'), // Mimetype `image` and `text/plain` allowed to upload
'uploadOrder' => array('deny', 'allow'), // allowed Mimetype `image` and `text/plain` only
'accessControl' => 'access', // disable and hide dot starting files (OPTIONAL),'noShowHidden'代表不显示隐藏文件【但无效】。
),