del:删除文件和目录 源码
德尔 使用删除文件和目录 与相似,但具有Promise API并支持多个文件和globlob。 它还可以防止您删除当前的工作目录及更高版本。 安装 $ npm install del 用法 const del = require ( 'del' ) ; ( async ( ) => { const deletedFilePaths = await del ( [ 'temp/*.js' , '!temp/unicorn.js' ] ) ; const deletedDirectoryPaths = await del ( [ 'temp' , 'public' ] ) ; console . log ( 'Deleted files:\n' , deletedFilePaths . join ( '\n' ) ) ; console . log ( '\n\n' ) ; cons
用户评论