1.0.5 • Published 2 years ago

@samwen/fs-utils v1.0.5

Weekly downloads
130
License
ISC
Repository
github
Last release
2 years ago

fs-utils

an useful collection of utils for files and folders operations.

how to install

npm install @samwen/fs-utils --save

how to use

const { deleteFolderRecursive, listFolderRecursive, writeToGzipFile } = require('@samwen/fs-utils');

deleteFolderRecursive('/tmp/test/test_folder');

const list = listFolderRecursive('/tmp/test/test_folder');

const str = 'test writeToGzipFile. verifies it should unzip back to the same text';
writeToGzipFile('/tmp/filesys_test/test.txt.gz', str);