方法說明:
同步版的fs.writeFile() 。
文法:
fs.writeFileSync(filename, data, [options])
由於方法屬於fs模組,使用前需要引入fs模組(var fs= require(“fs”) )
接收參數:
filename (String) 檔案名稱
data (String | Buffer) 將要寫入的內容,且可讓字串 或 buffer資料。
options (Object) option陣列對象,並包含:
· encoding (string) 可選值,且預設為 ‘utf8′,當data使buffer時,此值應為 ignored。
· mode (Number) 以讀取和寫入權限,而預設值 438
· flag (String) 預設值 ‘w'
範例:
fs.writeFileSync('message.txt', 'Hello Node');
原始碼:
fs.writeFileSync = function(path, data, options) {
if (!options) {
options = { encoding: 'utf8', mode: 438 /*=0666*/, flag: 'w' };
} else if (util.isString(options)) {
options = { encoding: options, mode: 438, flag: 'w' };
} else if (!util.isObject(options)) {
throw new TypeError('Bad arguments');
}
assertEncoding(options.encoding);
var flag = options.flag || 'w';
var fd = fs.openSync(path, flag, options.mode);
if (!util.isBuffer(data)) {
data = new Buffer('' data, options.encoding || 'utf8');
}
var written = 0;
var length = data.length;
var position = /a/.test(flag) ? null : 0;
try {
while (written
written = fs.writeSync(fd, data, written, length - written, position);
position = written;
}
} finally {
fs.closeSync(fd);
}
};