coderaiser / dropboxify

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

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Dropboxify License NPM version Build Status Coverage Status

Read directory content from dropbox compatible way with readify.

Install

npm i dropboxify

API

dropboxify(token, dir[, options])

  • token - string generated access token
  • options - object can contain:
    • sort - sort by: name, size, date
    • order - "asc" or "desc" for ascending and descending order (default: "asc")
    • type - when "raw" returns not formatted result

Examples

const sort = 'size';
const order = 'desc';
const token = 'token';
const dir = '/';
const type = 'raw';

const files = await dropboxify(token, dir, {
    type,
    sort,
    order,
});

console.log(files);
// outputs
({
    path: '/',
    files: [{
        name: 'dropboxify.js',
        size: 4735,
        date: 1_377_248_899_000,
        owner: 0,
        mode: 0,
    }, {
        name: 'readify.js',
        size: 3735,
        date: 1_377_248_899_000,
        owner: 0,
        mode: 0,
    }],
});

Related

  • Sortify - sort directory content by name, size, date
  • Readify - read directory content with file attributes: size, date, owner, mode

License

MIT

About

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


Languages

Language:JavaScript 100.0%