JSPM

  • Created
  • Published
  • Downloads 356
  • Score
    100M100P100Q95879F
  • License MIT

Read directory content with file attributes: size, date, owner, mode

Package Exports

  • readify
  • readify/legacy

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (readify) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

Readify License NPM version Dependency Status Build Status Coverage Status

Read directory content with file attributes: size, date, owner, mode.

Install

With npm:

npm i readify --save

API

readify(dir [, options, ], callback)

  • dir - path of a directory
  • options - object can contain:
    • type - type of result, could be "raw"
    • sort - sort by: name, size, date
    • order - "asc" or "desc" for ascending and descending order (default: "asc")
  • callback - function

Examples

const readify = require('readify');

radify('/', (error, data) => {
    console.log(data);
    // output
    {
        path: '/',
        files:  [{
            name: 'readify.js',
            size: '4.22kb',
            date: '20.02.2016',
            owner: 'coderaiser',
            mode: 'rw- rw- r--'
        }]
    }
});

radify('/', {type: 'raw'}, (error, data) => {
    console.log(data);
    // output
    {
        path: '/',
        files:  [{
            name: 'readify.js',
            size: 4735,
            date: 2016-11-21T13:37:55.275Z,
            owner: 1000,
            mode: 33204
        }]
    }
});

radify('/', {type: 'raw', sort: 'size', order: 'desc'}, (error, data) => {
    console.log(data);
    // output
    {
        path: '/',
        files:  [{
            name: 'readify.js',
            size: 4735,
            date: 2016-11-21T13:37:55.275Z,
            owner: 1000,
            mode: 33204
        }]
    }
});

Environments

In old node.js environments that supports es5 only, readify could be used with:

var readify = require('readify/legacy');

License

MIT