@onlabsorg/stilo
Version:
Command line tool for managing olojs document packages
46 lines (26 loc) • 905 B
Markdown
> Get the correct trash path on Linux according to the [spec](http://www.ramendik.ru/docs/trashspec.html)
```
$ npm install xdg-trashdir
```
```js
const xdgTrashdir = require('xdg-trashdir');
(async () => {
console.log(await xdgTrashdir());
//=> '/home/johndoe/.local/share/Trash'
console.log(await xdgTrashdir('foo.zip'));
//=> '/media/johndoe/UUI/.Trash-1000'
console.log(await xdgTrashdir.all());
//=> ['/home/johndoe/.local/share/Trash', '/media/johndoe/UUI/.Trash-1000', …]
})();
```
Returns a `Promise<string>` with the path to the trash.
Type: `string`
Get the trash path for a specific file.
Returns a `Promise<string[]>` with all possible trash paths.