Code Monkey home page Code Monkey logo

node-find-files's Introduction

node-find-files

This is a quick utility I wrote for recursively searching a directory structure and finding files and directories that match a particular spec.

What's Different About it

Similar projects that I was able to find processed the whole directory tree and then handed a set of results back at the end. This module inherits from EventEmitter so it will begin streaming results as soon as the first one is found.

My initial use case was to find files modified since a particular date, but you can also pass a filter function to return files that match any criteria you can find on the fs.stat object in node.

Usage:

var FindFiles = require("node-find-files").default;


var d = new Date()
d.setDate(d.getDate() - 1);

var finder = new FindFiles({
    rootFolder : "/Users",
    fileModifiedDate : d
});

finder.on("match", function(strPath, stat) {
    console.log(strPath + " - " + stat.mtime);
})
finder.on("complete", function() {
    console.log("Finished")
})
finder.on("patherror", function(err, strPath) {
    console.log("Error for Path " + strPath + " " + err)  // Note that an error in accessing a particular file does not stop the whole show
})
finder.on("error", function(err) {
    console.log("Global Error " + err);
})
finder.startSearch();

OK but give me more Power

You can set up the finder object with any filter function you like

//  Alternate Usage to achieve the same goal, but you can use any of the properties of the fs.stat object or the path to do your filtering
var finder = new FindFiles({
    rootFolder : "/Users",
    filterFunction : function (path, stat) {
        return (stat.mtime > d) ? true : false;
    }
});

What's new in version 1.0.0?

Main breaking change is that there was previously an export called finder that could be imported as

import {finder} from "node-find-files";.

This has been removed now due to an update in tooling so some examples of importing it properly are:

import finder from "node-find-files"; or;

const finder = require("node-find-files");

Otherwise it is mainly a bug fix release with a few minor refactorings to support the new tooling.

node-find-files's People

Contributors

sudsy avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.