Nodejs实现多文件夹文件同步
更新时间:2018年10月17日 10:27:13 作者:迦蓝叶
这篇文章主要为大家介绍了Nodejs实现多文件夹文件同步,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
本文实例为大家分享了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);
代码只是能用,菜鸟写法,等js这块有深入理解了之后,再修改这块的代码,也希望js大牛指点。
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。
您可能感兴趣的文章:
相关文章
使用 Node.js和Express搭建服务器的过程步骤详解
Node.js 是一个开源、跨平台的 JavaScript 运行时环境,这篇文章主要介绍了如何使用 Node.js和Express搭建服务器,需要的朋友可以参考下2023-09-09node.js应用后台守护进程管理器Forever安装和使用实例
这篇文章主要介绍了node.js应用后台守护进程管理器Forever安装和使用实例,forever可以看做是一个nodejs的守护进程,能够启动,停止,重启我们的app应用,需要的朋友可以参考下2014-06-06
最新评论