dropboxify
v3.0.3
Published
Read directory content from dropbox with file attributes
Downloads
987
Maintainers
Readme
Dropboxify
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, dateorder
- "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