當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Node.js fs-extra remove()用法及代碼示例


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

相關用法


注:本文由純淨天空篩選整理自pritishnagpal大神的英文原創作品 NodeJS fs-extra remove() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。