//多选:文件和目录
$fc.show((files)=> {
for (let i = 0; i < files.length; i++) {
log(files[i]);
}
}, {
root: "/sdcard",
path: "/sdcard/Pictures",
mode: "m",
type: "a"
});
//配置参数如下:
let options = {
mode: "m", //多选模式("single","multi")写一个字母就行了
type: "a", //文件和目录("file","mkdir","all")写一个字母就行了
root: "/sdcard", //[可选]最高根路径
path: "/sdcard/Pictures", //[可选]默认路径
ext: "jpg,png" //[可选]后缀过滤
}