import console;
import fsys;
console.showLoading("正在搜索");
/*
遍历参数 @1 目录下的文件(不包含子目录下的文件),
可选用参数 @2 指定匹配文件名的模式串。
*/
for i,filename,path in fsys.each("~/example","\a+","*.aardio","file"){
if(fsys.match(path,"入门")){
console.log(filename,path)
}
}
console.pause();
Markdown 格式