nodejs fs模組 檔案操作

2022-04-08 01:38:00 字數 1098 閱讀 4100

})如果檔案不存在會自動建立檔案,

存在則覆蓋。

var fs = require('fs')

fs.writefile('fs.txt','-----^^^^  hello nodejs','utf8',function(err)

console.log('write file has been success')

})var fs = require('fs')

if(err)

console.log('write file successfully')

})var fs = require('fs')

// 非同步讀取

fs.readfile('t1.txt', function (err, data)

console.log("非同步讀取:\n " + data.tostring());

});// 同步讀取

// var data = fs.readfilesync('fs.txt');

// console.log("同步讀取: " + data.tostring());

console.log("\n程式執行完畢。\n");

獲取目錄下的所有檔案和資料夾

nodejs fs模組 一 檔案模組操作2

可以不通過以檔案描述符操作的檔案操作函式 讀取檔案 fs.readfile path,options,callback 讀取檔案 path 檔名或檔案描述符 options encoding 編碼 預設utf8 flag 預設為r 讀取方式 callback err data 檔案內容 fs.rea...

nodeJS fs模組的基本使用

注意 基本上所有方法都有非同步和同步,基本上同步的方法 都是在非同步方法後面加上 sync 前提 要先引入fs模組 var fs require fs a 非同步讀取 fs.readfile 要讀取的檔案的路徑 function err,data 否則 列印讀取到的資料 console.log da...

Nodejs fs模組 全域性變數

fs模組提供了用於與檔案進行互動相關方法 const fs require fs 寫入資料 fs.writefile 檔案,資料,err 讀取檔案中資料 fs.readfile 檔案 utf8 err,data 檢查檔案是否存在 返回 true false fs.existssync path 獲取...