remove()函数将删除给定的文件或目录。目录内的所有文件都将被删除。如果给定的文件或目录不存在,该函数将不执行任何操作。
用法:
fs.remove(path,callback)
参数:该函数接受上面提到和下面描述的两个参数。
- path:它是一个包含文件路径或目录路径的字符串。
- callback:函数执行后将调用它。我们也可以使用Promise代替回调函数。
返回值:它不返回任何东西。
请按照以下步骤实现该函数:
-
可以使用以下命令安装该模块:
npm install fs-extra
-
安装模块后,可以使用以下命令检查已安装模块的版本:
npm ls fs-extra
-
使用以下命令创建一个名为index.js的文件,并在文件中需要fs-extra模块:
const fs = require('fs-extra');
-
要运行文件,请在终端中输入以下命令:
node index.js
项目结构将如下所示:
范例1:
index.js
// Requiring module
import { remove } from "fs-extra";
// This file exists
// already so the
// function will delete it
const file = "file.txt";
// Function call
// Using callback function
fs.remove(file, (err) => {
if (err) return console.log(err);
console.log("Given file is deleted");
});
输出:此输出将是控制台输出。
范例2:
index.js
// Requiring module
import { remove } from "fs-extra";
// The directory and
// the files inside
// it will be deleted
const file = "dir";
// Function call
// Using Promises
remove(file)
.then(() => console.log("Directory and files inside it are deleted"))
.catch((e) => console.log(e));
输出:此输出将是控制台输出。
参考:https://github.com/jprichardson/node-fs-extra/blob/HEAD/docs/remove.md
相关用法
- Node.js GM charcoal()用法及代码示例
- Node.js GM blur()用法及代码示例
- Node.js GM sharpen()用法及代码示例
- Node.js GM drawLine()用法及代码示例
- Node.js GM drawArc()用法及代码示例
- Node.js GM drawPolyline()用法及代码示例
- Node.js GM drawBezier()用法及代码示例
- Node.js GM drawCircle()用法及代码示例
- Node.js GM drawEllipse()用法及代码示例
- Node.js GM drawPolygon()用法及代码示例
- Node.js GM drawRectangle()用法及代码示例
- Node.js GM paint()用法及代码示例
- Node.js GM orderedDither()用法及代码示例
- Node.js GM roll()用法及代码示例
- Node.js GM segment()用法及代码示例
- Node.js GM quality()用法及代码示例
- Node.js GM raise()用法及代码示例
- Node.js GM resize()用法及代码示例
- Node.js GM transparent()用法及代码示例
- Node.js GM thumbnail()用法及代码示例
- Node.js GM threshold()用法及代码示例
- Node.js GM whitePoint()用法及代码示例
- Node.js GM whiteThreshold()用法及代码示例
注:本文由纯净天空筛选整理自pritishnagpal大神的英文原创作品 NodeJS fs-extra remove() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。