All Projects → jonschlinkert → delete-empty

jonschlinkert / delete-empty

Licence: MIT License
Recursively delete all empty folders in a directory and child directories.

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to delete-empty

Voila
Voila is a domain-specific language launched through CLI tool for operating with files and directories in massive amounts in a fast & reliable way.
Stars: ✭ 78 (+105.26%)
Mutual labels:  files, directory, directories
files
Useful methods to manage files and directories
Stars: ✭ 27 (-28.95%)
Mutual labels:  files, directory, directories
Globby
User-friendly glob matching
Stars: ✭ 1,864 (+4805.26%)
Mutual labels:  files, glob, directories
bash-glob
Bash-powered globbing for node.js. Alternative to node-glob. Does not work on Windows 9 and lower.
Stars: ✭ 13 (-65.79%)
Mutual labels:  files, glob
Filebuster
An extremely fast and flexible web fuzzer
Stars: ✭ 176 (+363.16%)
Mutual labels:  files, directory
Copy Webpack Plugin
Copy files and directories with webpack
Stars: ✭ 2,679 (+6950%)
Mutual labels:  files, glob
Copy
Go copy directory recursively
Stars: ✭ 264 (+594.74%)
Mutual labels:  files, directory
empty-dir
Check if a directory is empty.
Stars: ✭ 19 (-50%)
Mutual labels:  directory, empty
matched
Glob matching with support for multiple patterns and negation. Use `~` in cwd to find files in user home, or `@` for global npm modules.
Stars: ✭ 25 (-34.21%)
Mutual labels:  files, glob
readdir
Recursively read a directory, blazing fast. Use with picomatch or micromatch to match globs.
Stars: ✭ 37 (-2.63%)
Mutual labels:  directory, directories
odcrawler-frontend
A frontend for ODCrawler, an Open Directory search engine.
Stars: ✭ 20 (-47.37%)
Mutual labels:  files, directory
dir-glob
Convert directories to glob compatible strings
Stars: ✭ 41 (+7.89%)
Mutual labels:  glob, directories
Xcv
✂️ Cut, Copy and Paste files with Bash
Stars: ✭ 144 (+278.95%)
Mutual labels:  files, glob
dirgen
Generate files and folders from a template file
Stars: ✭ 21 (-44.74%)
Mutual labels:  files, directory
Fcfilemanager
iOS File Manager on top of NSFileManager for simplifying files management. 📂
Stars: ✭ 862 (+2168.42%)
Mutual labels:  files, directory
jquery.filebrowser
File browser jQuery plugin
Stars: ✭ 29 (-23.68%)
Mutual labels:  files, directories
Fdir
⚡ The fastest directory crawler & globbing library for NodeJS. Crawls 1m files in < 1s
Stars: ✭ 777 (+1944.74%)
Mutual labels:  directory, glob
replace-in-files
Replace text in one or more files or globs.
Stars: ✭ 21 (-44.74%)
Mutual labels:  files, glob
glob-fs
file globbing for node.js. speedy and powerful alternative to node-glob. This library is experimental and does not work on windows!
Stars: ✭ 54 (+42.11%)
Mutual labels:  files, glob
txr
Send files super easily to other computers/servers using WebSockets.
Stars: ✭ 20 (-47.37%)
Mutual labels:  files, directories

delete-empty Donate NPM version NPM monthly downloads NPM total downloads Linux Build Status

Recursively delete all empty folders in a directory and child directories.

Please consider following this project's author, Jon Schlinkert, and consider starring the project to show your ❤️ and support.

(TOC generated by verb using markdown-toc)

Install

Install with npm:

$ npm install --save delete-empty

Usage

const deleteEmpty = require('delete-empty');

API

Given the following directory structure, the highlighted directories would be deleted.

foo/
└─┬ a/
- ├── aa/
  ├── bb/
  │ └─┬ bbb/
  │ │ ├── one.txt
  │ │ └── two.txt
- ├── cc/
- ├ b/
- └ c/

async-await (promise)

If no callback is passed, a promise is returned. Returns the array of deleted directories.

(async () => {
  let deleted = await deleteEmpty('foo');
  console.log(deleted); //=> ['foo/aa/', 'foo/a/cc/', 'foo/b/', 'foo/c/']
})();

// or
deleteEmpty('foo/')
  .then(deleted => console.log(deleted)) //=> ['foo/aa/', 'foo/a/cc/', 'foo/b/', 'foo/c/']
  .catch(console.error);

async callback

Returns the array of deleted directories in the callback.

deleteEmpty('foo/', (err, deleted) => {
  console.log(deleted); //=> ['foo/aa/', 'foo/a/cc/', 'foo/b/', 'foo/c/']
});

sync

Returns the array of deleted directories.

console.log(deleteEmpty.sync('foo/')); //=> ['foo/aa/', 'foo/a/cc/', 'foo/b/', 'foo/c/']

CLI

To use the delete-empty command from any directory you must first install the package globally with the following command:

$ npm install --global delete-empty

Usage

Usage: $ delete-empty <directory> [options]

Directory: (optional) Initial directory to begin the search for empty
           directories. Otherwise, cwd is used.

[Options]:
  -c, --cwd           Set the current working directory for folders to search.
  -d, --dryRun        Do a dry run without deleting any files.
  -h, --help          Display this help menu
  -V, --version       Display the current version of rename
  -v, --verbose       Display all verbose logging messages (currently not used)

About

Contributing

Pull requests and stars are always welcome. For bugs and feature requests, please create an issue.

Running Tests

Running and reviewing unit tests is a great way to get familiarized with a library and its API. You can install dependencies and run tests with the following command:

$ npm install && npm test
Building docs

(This project's readme.md is generated by verb, please don't edit the readme directly. Any changes to the readme must be made in the .verb.md readme template.)

To generate the readme, run the following command:

$ npm install -g verbose/verb#dev verb-generate-readme && verb

Related projects

You might also be interested in these projects:

  • copy: Copy files or directories using globs. | homepage
  • delete: Delete files and folders and any intermediate directories if they exist (sync and async). | homepage
  • fs-utils: fs extras and utilities to extend the node.js file system module. Used in Assemble and… more | homepage
  • matched: Adds array support to node-glob, sync and async. Also supports tilde expansion (user home) and… more | homepage

Contributors

Commits Contributor
31 jonschlinkert
2 treble-snake
1 doowb
1 svenschoenung
1 vpalmisano

Author

Jon Schlinkert

License

Copyright © 2019, Jon Schlinkert. Released under the MIT License.


This file was generated by verb-generate-readme, v0.8.0, on July 02, 2019.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].