91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

node刪除、復制文件或文件夾示例代碼

發布時間:2020-10-12 20:30:12 來源:腳本之家 閱讀:125 作者:hewitt 欄目:web開發

注意:在win10,v10.16.1 環境運行無問題

首先引入相關包(會在使用處具體說明):

const fs = require('fs')
const path = require('path')
const child_process = require('child_process')
const fsEx = require('fs-extra')
/**
 * @des 該包為實驗性API
 */
const fsPromises = require('fs').promises

對文件的操作

復制文件

這里列出三種方式:

  1. 使用 writeFileSync 和 readFileSync 結合
  2. 使用 copyFileSync
  3. 使用promises的copyFile方法

其中的同步或異步方法可酌情更改,實現代碼如下

/**
 * @param { copiedPath: String } (被復制文件的地址,相對地址)
 * @param { resultPath: String } (放置復制文件的地址,相對地址)
 */
function copyFile(copiedPath, resultPath) {
 copiedPath = path.join(__dirname, copiedPath)
 resultPath = path.join(__dirname, resultPath)

 try {
  /**
   * @des 方式一
   */
  // fs.writeFileSync(resultPath, fs.readFileSync(copiedPath))
  /**
   * @des 方式二
   */
  // fs.copyFileSync(copiedPath, resultPath)
  console.log('success');
 } catch (error) {
  console.log(error);
 }
 /**
  * @des 方式三
  */
 fsPromises.copyFile(copiedPath, resultPath)
  .then(() => {
   console.log('success');
  }).catch((err) => {
   console.log(err);
  });
}

刪除文件

使用 unlinkSync 方法,實現代碼如下

/**
 * @param { delPath:String } (需要刪除文件的地址)
 * @param { direct:Boolean } (是否需要處理地址)
 */
function deleteFile(delPath, direct) {
 delPath = direct ? delPath : path.join(__dirname, delPath)
 try {
  /**
   * @des 判斷文件或文件夾是否存在
   */
  if (fs.existsSync(delPath)) {
   fs.unlinkSync(delPath);
  } else {
   console.log('inexistence path:', delPath);
  }
 } catch (error) {
  console.log('del error', error);
 }
}

對文件夾(目錄)的操作

以下代碼有引用,復制文件相關方法

復制文件夾

使用了兩種方式:

  • child_process
  • 遞歸的讀取文件和文件夾再在指定地址創建

實現代碼和釋意如下:

/**
 * @des 參數解釋同上
 */
function copyFolder(copiedPath, resultPath, direct) {
  if(!direct) {
    copiedPath = path.join(__dirname, copiedPath)
    resultPath = path.join(__dirname, resultPath)
  }

  function createDir (dirPath) {
    fs.mkdirSync(dirPath)    
  }

  if (fs.existsSync(copiedPath)) {
    createDir(resultPath)
    /**
     * @des 方式一:利用子進程操作命令行方式
     */
    // child_process.spawn('cp', ['-r', copiedPath, resultPath])

    /**
     * @des 方式二:
     */
    const files = fs.readdirSync(copiedPath, { withFileTypes: true });
    for (let i = 0; i < files.length; i++) {
      const cf = files[i]
      const ccp = path.join(copiedPath, cf.name)
      const crp = path.join(resultPath, cf.name) 
      if (cf.isFile()) {
        /**
         * @des 創建文件,使用流的形式可以讀寫大文件
         */
        const readStream = fs.createReadStream(ccp)
        const writeStream = fs.createWriteStream(crp)
        readStream.pipe(writeStream)
      } else {
        try {
          /**
           * @des 判斷讀(R_OK | W_OK)寫權限
           */
          fs.accessSync(path.join(crp, '..'), fs.constants.W_OK)
          copyFolder(ccp, crp, true)
        } catch (error) {
          console.log('folder write error:', error);
        }

      }
    }
  } else {
    console.log('do not exist path: ', copiedPath);
  }
}

刪除文件夾

遞歸文件和文件夾,逐個刪除

實現代碼如下:

function deleteFolder(delPath) {
  delPath = path.join(__dirname, delPath)

  try {
    if (fs.existsSync(delPath)) {
      const delFn = function (address) {
        const files = fs.readdirSync(address)
        for (let i = 0; i < files.length; i++) {
          const dirPath = path.join(address, files[i])
          if (fs.statSync(dirPath).isDirectory()) {
            delFn(dirPath)
          } else {
            deleteFile(dirPath, true)
          }
        }
        /**
        * @des 只能刪空文件夾
        */
        fs.rmdirSync(address);
      }
      delFn(delPath);
    } else {
      console.log('do not exist: ', delPath);
    }
  } catch (error) {
    console.log('del folder error', error);
  }
}

執行示例

目錄結構

|- index.js(主要執行代碼)
|- a
    |- a.txt
    |- b.txt
|- c
    |- a.txt
    |- b.txt
|- p
    |- a.txt
    |- b.txt

根據傳入的參數不同,執行相應的方法

/**
 * @des 獲取命令行傳遞的參數
 */
const type = process.argv[2]

function execute() {
  /**
   * @des 請根據不同的條件傳遞參數
   */
  if (type === 'copyFile') {
    copyFile('./p/a.txt', './c/k.txt')
  }

  if (type === 'copyFolder') {
    copyFolder('./p', './a')
  }

  if (type === 'delFile') {
    deleteFile('./c/ss.txt')
  }

  if (type === 'delFolder') {
    deleteFolder('./a')
  }
}

execute()

命令行傳參數

/**
 * @des 命令行傳參
 * 執行 node ./xxx/index.js 111 222
 * 輸出:
 * 0: C:\Program Files\nodejs\node.exe
 * 1: G:\GitHub\xxx\xxxx\index.js
 * 2: 111
 * 3: 222
 */
process.argv.forEach((val, index) => {
  console.log(`${index}: ${val}`);
});

利用 fs-extra 實現

這是對fs相關方法的封裝,使用更簡單快捷

/**
 * @des fs-extra 包實現
 * api參考: https://github.com/jprichardson/node-fs-extra
 */

function fsExtra() {
  async function copy() {
    try {
      await fsEx.copy(path.join(__dirname + '/p'), path.join(__dirname + '/d'))
      console.log('success');
    } catch (error) {
      console.log(error);
    }
  }

  copy()
}

可執行源碼: github.com/NameHewei/n…

總結

以上就是這篇文章的全部內容了,希望本文的內容對大家的學習或者工作具有一定的參考學習價值,謝謝大家對億速云的支持。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

商丘市| 偏关县| 云浮市| 景宁| 平乡县| 无棣县| 东山县| 新宁县| 安义县| 通化县| 高清| 景泰县| 库尔勒市| 文水县| 五指山市| 新郑市| 刚察县| 双峰县| 井陉县| 内乡县| 贺兰县| 海安县| 北流市| 游戏| 镇赉县| 岑巩县| 石林| 永寿县| 彩票| 盐山县| 馆陶县| 中超| 莫力| 榕江县| 云梦县| 佛山市| 永春县| 天台县| 朝阳区| 革吉县| 湖州市|