Dropbox files and folders CRUD.
npm i @cloudcmd/dropbox --save
All functions requires token as first parameter
- token -
string
- path -
string
- 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
const sort = 'size';
const order = 'desc';
const token = 'token';
const path = '/';
const type = 'raw';
const {readDir} = require('@cloudcmd/dropbox');
const files = await readDir(token, path, {
type,
sort,
order,
});
console.log(files);
// outputs
({
path: '/',
files: [{
name: 'dropbox.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,
}],
});
- token -
token
- path - path to file
const {readFile} = require('@cloudcmd/dropbox');
const readStream = await readFile(token, '/dropbox.html');
readStream.pipe(process.stdout);
- token -
token
- path - path to file
- contents - contents of a file
const {writeFile} = require('@cloudcmd/dropbox');
await writeFile(token, '/hello.txt', 'hello');
- token -
token
- path - path to file
const {createReadStream} = require('fs');
const {createWriteStream} = require('@cloudcmd/dropbox');
const token = 'token';
const path = '/file';
const dropboxStream = createWriteStream(token, path);
const localStream = createReadStream(path);
localStream
.pipe(dropboxStream)
.on('error', console
.error)
.on('finish', console.log);
- token -
token
- path - path to file
const {createWriteStream} = require('fs');
const {createReadStream} = require('@cloudcmd/dropbox');
const token = 'token';
const path = '/file';
const dropboxStream = createReadStream(path);
const localStream = createWriteStream(token, path);
dropboxStream
.pipe(localStream)
.on('error', console
.error)
.on('finish', console.log);
remove file/directory.
- token -
token
- path - path to file
const {remove} = require('@cloudcmd/dropbox');
await remove(token, '/fileOrDir');
create directory.
- token -
token
- path -
string
const {mkdir} = require('@cloudcmd/dropbox');
await mkdir(token, '/dirname');
Copy file/directory to new location
- token -
token
- from - path
from
- to - path
to
const {copy} = require('@cloudcmd/dropbox');
await copy(token, '/file1', '/file2');
Move file/directory to new location
- token -
token
- from - path
from
- to - path
to
const {move} = require('@cloudcmd/dropbox');
await move(token, '/file1', '/file2');
- readify - read directory content with file attributes: size, date, owner, mode
- flop - FoLder OPerations
- dropboxify - read directory content from dropbox compatible way with
readify
MIT