安装
npm install del-cli
yarn add del-cli
pnpm add del-cli
bun add del-cli
README

del-cli

Delete files and directories

Useful for use in build scripts and automated things.

Note that this does permanent deletion. See trash-cli for something safer.

Install

npm install --global del-cli

Usage

$ del --help

  Usage
    $ del <path|glob> …

  Options
    --force, -f    Allow deleting the current working directory and outside
    --dry-run, -d  List what would be deleted instead of deleting (silent if no matches)
    --verbose, -v  Display the absolute path of files and directories as they are deleted

  Examples
    $ del unicorn.png rainbow.png
    $ del "*.png" "!unicorn.png"

:warning: Windows users: Since $ del is already a builtin command on Windows, you need to use $ del-cli there.

Comparison

Benefits over rimraf CLI: Supports globbing (even on Windows), safer by default as it doesn't allow deleting parent directories, and has a dry-run mode.

Benefits over rm -rf: Cross-platform, safer by default as it doesn't allow deleting parent directories, and has a dry-run mode.

  • del - API for this package
  • trash-cli - Move files and directories to the trash
  • make-dir-cli - Make directories and their parents if needed
版本列表
7.0.0 2025-09-18
6.0.0 2024-10-07
5.1.0 2023-08-31
5.0.1 2023-08-25
5.0.0 2022-07-19
4.0.1 2021-07-15
4.0.0 2021-06-15
3.0.1 2020-05-16
3.0.0 2019-09-08
2.0.0 2019-05-29
1.1.0 2017-06-27
1.0.0 2017-05-09
0.2.1 2016-12-08
0.2.0 2016-02-10
0.1.2 2015-12-22
0.1.1 2015-12-15
0.1.0 2015-12-06