Node.js 使用递归实现遍历文件夹中所有文件
程序员文章站
2022-11-25 12:06:12
如标题所示,遍历文件夹下的所有文件,主要功能如下:
传入一个路径,读取路径里面所有的文件
遍历读取的文件,判断当前文件是文件还是文件夹
当前目录为文件,打印出当前文件...
如标题所示,遍历文件夹下的所有文件,主要功能如下:
传入一个路径,读取路径里面所有的文件
遍历读取的文件,判断当前文件是文件还是文件夹
当前目录为文件,打印出当前文件绝对路径
当前目录为文件夹,获取文件夹路径,继续读取路径下文件
遍历完目录中的所有文件为止
代码中用到的几个方法
path.resolve(path)
一个路径或路径片段解析成一个绝对路径,返回解析后的路径字符串
fs.readdir(path[,option],callback)
读取目录下面的文件,返回目录下的文件列表对象,如果传入的是个文件,返回这个文件
fs.stat(path,callback)
获取文件信息对象stats,包括文件大小,gid等信息
stats.isfile()
文件信息对象stats的一个方法,判断当前文件是不是一个文件
stats.isdirectory()
文件信息对象stats的一个方法,判断当前文件是不是一个文件夹
代码和注释如下:
var fs = require('fs'); var path = require('path'); //解析需要遍历的文件夹,我这以e盘根目录为例 var filepath = path.resolve('e:'); //调用文件遍历方法 filedisplay(filepath); /** * 文件遍历方法 * @param filepath 需要遍历的文件路径 */ function filedisplay(filepath){ //根据文件路径读取文件,返回文件列表 fs.readdir(filepath,function(err,files){ if(err){ console.warn(err) }else{ //遍历读取到的文件列表 files.foreach(function(filename){ //获取当前文件的绝对路径 var filedir = path.join(filepath,filename); //根据文件路径获取文件信息,返回一个fs.stats对象 fs.stat(filedir,function(eror,stats){ if(eror){ console.warn('获取文件stats失败'); }else{ var isfile = stats.isfile();//是文件 var isdir = stats.isdirectory();//是文件夹 if(isfile){ console.log(filedir); } if(isdir){ filedisplay(filedir);//递归,如果是文件夹,就继续遍历该文件夹下面的文件 } } }) }); } }); }
运行结果为:
e:\jars\spring-framework-4.2.9.release\docs\javadoc-api\org\springframework\cache\interceptor\abstractcacheinvoker.html e:\jars\spring-framework-4.2.9.release\docs\javadoc-api\org\springframework\cache\interceptor\abstractcacheresolver.html e:\jars\spring-framework-4.2.9.release\docs\javadoc-api\org\springframework\cache\interceptor\basicoperation.html e:\jars\spring-framework-4.2.9.release\docs\javadoc-api\org\springframework\cache\interceptor\cacheableoperation.html e:\jars\spring-framework-4.2.9.release\docs\javadoc-api\org\springframework\cache\interceptor\beanfactorycacheoperationsourceadvisor.html e:\jars\spring-framework-4.2.9.release\docs\javadoc-api\org\springframework\cache\interceptor\abstractfallbackcacheoperationsource.html e:\jars\spring-framework-4.2.9.release\docs\javadoc-api\org\springframework\cache\interceptor\cacheaspectsupport.cacheoperationcontext.html e:\jars\spring-framework-4.2.9.release\docs\javadoc-api\org\springframework\cache\interceptor\cacheaspectsupport.html e:\jars\spring-framework-4.2.9.release\docs\javadoc-api\org\springframework\cache\interceptor\cacheaspectsupport.cacheoperationmetadata.html e:\jars\spring-framework-4.2.9.release\docs\javadoc-api\org\springframework\cache\interceptor\cacheerrorhandler.html e:\jars\spring-framework-4.2.9.release\docs\javadoc-api\org\springframework\cache\interceptor\cacheevictoperation.html e:\jars\spring-framework-4.2.9.release\docs\javadoc-api\org\springframework\cache\interceptor\cacheinterceptor.html e:\jars\spring-framework-4.2.9.release\docs\javadoc-api\org\springframework\cache\interceptor\cacheoperation.html e:\jars\spring-framework-4.2.9.release\docs\javadoc-api\org\springframework\cache\interceptor\cacheoperationinvocationcontext.html e:\jars\spring-framework-4.2.9.release\docs\javadoc-api\org\springframework\cache\interceptor\cacheoperationinvoker.html ············
到这node.js 遍历文件夹的实现方法就结束了,希望大家以后多多支持。
上一篇: Angularjs的启动过程分析
下一篇: 基于JQuery的Ajax方法使用详解