小编给大家分享一下Nodejs如何实现多文件夹文件同步,相信大部分人都还不怎么了解,因此分享这篇文章给大家参考一下,希望大家阅读完这篇文章后大有收获,下面让我们一起去了解一下吧!
成都创新互联公司是少有的成都网站制作、网站设计、营销型企业网站、微信小程序开发、手机APP,开发、制作、设计、外链、推广优化一站式服务网络公司,成立与2013年,坚持透明化,价格低,无套路经营理念。让网页惊喜每一位访客多年来深受用户好评JS是什么JS是JavaScript的简称,它是一种直译式的脚本语言,其解释器被称为JavaScript引擎,是浏览器的一部分,主要用于web的开发,可以给网站添加各种各样的动态效果,让网页更加美观。
本文实例为大家分享了Nodejs实现多文件夹文件同步的具体代码,供大家参考,具体内容如下
package.json { "name": "asyncFile", "version": "0.0.1", "dependencies":{ "fs-sync":"", "later":"" } }
asycnFile.js
var fsSync = require('fs-sync'); var fs = require('fs'); var util = require("util"); var later = require("later"); //需要同步的文件夹路径 var path = { "pathOne": "/home/lincoln/testAsync/dirOne/", "pathTwo": "/home/lincoln/testAsync/dirTwo/" }; //需要同步的文件夹名称 var asyncDir = ["img", "music"]; var dirFilesOne; var dirFilesTwo; //读取文件夹信息 function readDir(dirName){ dirFilesOne = fs.readdirSync(path.pathOne + dirName); dirFilesTwo = fs.readdirSync(path.pathTwo + dirName); } //使用fs-sync模块拷贝文件信息 function useFileCopy(sourcePath,distPath,copyFiles) { for(var index in copyFiles){ fsSync.copy(sourcePath+copyFiles[index],distPath+copyFiles[index]) } } //统计需要同步的文件信息 function needCopyFiles(sourceFiles, distFiles) { var needCopyFiles = []; for (var index in sourceFiles) { if (distFiles.indexOf(sourceFiles[index]) == -1) { needCopyFiles.push(sourceFiles[index]); console.log("needAsyncFile-->"+sourceFiles[index]); } } return needCopyFiles; } //同步文件 function copyFile(dirName) { var sourcePath = path.pathOne + dirName +"/"; var distPath = path.pathTwo + dirName +"/"; readDir(dirName) useFileCopy(sourcePath,distPath,needCopyFiles(dirFilesOne,dirFilesTwo)); readDir(dirName); useFileCopy(distPath,sourcePath,needCopyFiles(dirFilesTwo,dirFilesOne)); } //for (var index in asyncDir) { // //console.log(asyncDir[index]) // console.log(new Date() +" 执行同步--->"+asyncDir[index]) // copyFile(asyncDir[index]); //} var sched = later.parse.recur().every(10).second(), t = later.setInterval(function() { for (var index in asyncDir) { //console.log(asyncDir[index]) console.log(new Date() +" 执行同步--->"+asyncDir[index]); copyFile(asyncDir[index]); } }, sched);
以上是“Nodejs如何实现多文件夹文件同步”这篇文章的所有内容,感谢各位的阅读!相信大家都有了一定的了解,希望分享的内容对大家有所帮助,如果还想学习更多知识,欢迎关注创新互联行业资讯频道!