/DuplicatedFilesLookup

Node module that will return an object containing duplicated files on selected path

Primary LanguageJavaScriptMIT LicenseMIT

DuplicatedFilesLookup

NodeJS module to seek duplicated files on a selected path.

USAGE

npm i duplicatedfileslookup --save
var dfl = require("duplicatedfileslookup");
dfl.getDuplicateds(path,function(result){
    //do something with result object
});

Track progression:

dfl.getProgress(function(progress){
    /*  do somenthing with progress object
    /*  { 
    /*    count : *last file processed*,
    /*    total : *totalfile to process*,
    /*    working : true|false
    /*  }
});

LICENSE