dir_watchdog

1.0.0 • Public • Published

dir_watchdog

PayPayl donate button npm version fs version array-difference version readdirp version

  • This is a directory/folder watchdog tool.

Overview

Getting Started

npm install dir_watchdog

Usage

var dw = require('dir_watchdog');
var option = new Object();
option.rootpath = "./myfile";             //default path : "./"
option.timer = 1000;                        //default : 2000 millionseconds detect.
dw.watchdog(option, function(ret, files, dirs)
{
  //catch event msg.
  switch(ret)
  {
      case "init":
        showlog(ret, files, dirs);
        break;
      case "create":
        showlog(ret, files, dirs);
        break;
      case "delete":
        showlog(ret, files, dirs);
        break;
      case "change":
        showlog(ret, files, dirs);
        break;
      default:
        break;
  }
});
function showlog(ret, files, dirs)
{
    console.log(ret);
    console.log("=====files=====");
    console.log(files);
    console.log("=====directories=====");
    console.log(dirs);
}

Result

  • init:
* create: ( hello file)
* delete: ( hello file)
* change[rename]: ( hello -> hello_rename file)
* change[move]: ( ../myfile/hello_rename → ../myfile/test/hello__rename file)

License

  • SEE Linence

Package Sidebar

Install

npm i dir_watchdog

Weekly Downloads

1

Version

1.0.0

License

MIT

Last publish

Collaborators

  • chris_sheu