FLOP - Folder operations module.
For use as application you could use global install.
npm i flop -g
If you run flop -h you will see:
flop - folder operations module.
options:
-h, --help - show this message
-r, --read - get directory content
Also you can use flop as a module if install with
npm i flop
Create new directory.
const flop = require('flop'); flop.create('./hello/world/from/flop', (error, data) => { console.log(error, data); });
Read content of directory with permisions and sizes.
Parameters:
- path
- type (optional)
- options (optional)
Posible type:
- raw
- size
- size raw
const flop = require('flop'); await flop.read('.'); await flop.read('.', { sort: 'size', }); await flop.read('.', 'raw'); await flop.read('.', 'size'); await flop.read('.', 'size raw');
const flop = require('flop'); await flop.copy('from', 'to');
const flop = require('flop'); await flop.move('from', 'to');
await flop.remove('path/to/remove'); await flop.remove('path/to/remove', ['folder1', 'folder2']);
MIT