2、具体实现步骤
首先我们需要知道图片的路径,图片的路径是相对路径也可以是绝对路径;其次我们需要获取到图片的文件名
function findSync(startPath) {
let result=[]
function finder(path) {
let files=fs.readdirSync(path)
files.forEach((val,index) =>{
let fPath=join(path,val)
let stats=fs.statSync(fPath)
if(stats.isDirectory()) finder(fPath)
if(stats.isFile()) result.push(fPath)
})
}
finder(startPath)
return result
}
let fileNames=findSync('./')
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)