meta-fs

0.0.1 • Public • Published

Higher level filesystem utilities

Build Status

Usage

// import augmented 'fs' module
var Fs = require('meta-fs')

// print everything under /etc
Fs.find('/etc', {
  match_fn: function (path, stat, depth, cb) {
    console.log('FOUND', path)
    // you can stop walking by passing an error to `cb`
    cb(depth > 3 and true or nil)
  }
}, function (err) {
  console.log('DONE', err)
})


// remove /home/foo completely
Fs.remove('/home/foo', console.log)


// make nested directories
Fs.mkdir_p('/home/foo/bar/baz', console.log)


// copy source file/directory
Fs.copy('/home/foo/bar/baz', '/tmp/wow', console.log)


// make symlink
Fs.link('/etc/passwd', '/tmp/passes', console.log)

License

MIT

Dependencies (0)

    Dev Dependencies (1)

    Package Sidebar

    Install

    npm i meta-fs

    Weekly Downloads

    0

    Version

    0.0.1

    License

    none

    Last publish

    Collaborators

    • dvv