fsPromises.writeFile()方法用於將指定的數據異步寫入文件。默認情況下,該文件將被替換(如果存在)。 ‘options’參數可用於修改方法的函數。
承諾將成功解決,毫無爭議。
用法:
fsPromises.writeFile( file, data, options )
參數:此方法接受上述和以下所述的三個參數:
- file:它是一個字符串,Buffer,URL或文件描述整數,表示必須在其中寫入文件的路徑。使用文件描述符將使其行為類似於fsPromises.write()方法。
- data:它是將寫入文件的字符串,Buffer,TypedArray或DataView。
- options:它是一個字符串或對象,可用於指定將影響輸出的可選參數。它具有三個可選參數:
- encoding:它是一個字符串值,用於指定文件的編碼。默認值為“ utf8”。
- mode:它是一個整數值,指定文件模式。默認值為0o666。
- flag:它是一個字符串值,用於指定在寫入文件時使用的標誌。默認值為‘w’。
返回值:此方法返回一個Promise。
以下示例說明了Node.js中的fsPromises.writeFile()方法:
範例1:
// Node.js program to demonstrate the
// fsPromises.writeFile() method
// Import the filesystem module
const fs = require('fs');
const fsPromises = require('fs').promises;
let data = "This is a file containing"
+ " a collection of movies.";
(async function main() {
try {
await fsPromises.writeFile(
"movies.txt", data)
console.log("File written successfully");
console.log("The written file has"
+ " the following contents:");
console.log("" +
fs.readFileSync("./movies.txt"));
} catch (err) {
console.error(err);
}
})();
輸出:
File written successfully The written file has the following contents: This is a file containing a collection of movies.
範例2:
// Node.js program to demonstrate the
// fsPromises.writeFile() method
// Import the filesystem module
const fs = require('fs');
const fsPromises = require('fs').promises;
let data = "This is a file containing"
+ " a collection of books.";
(async function main() {
try {
await fsPromises.writeFile(
"books.txt", data, {
encoding:"utf8",
flag:"w",
mode:0o666
});
console.log("File written successfully\n");
console.log("The written has the "
+ "following contents:");
console.log("" +
fs.readFileSync("books.txt"));
}
catch (err) {
console.error(err);
}
})();
輸出:
File written successfully The written has the following contents: This is a file containing a collection of books.
參考: https://nodejs.org/api/fs.html#fs_fspromises_writefile_file_data_options
相關用法
- Node.js console.timeLog()用法及代碼示例
- Node.js GM segment()用法及代碼示例
- Node.js GM blur()用法及代碼示例
- Node.js GM bordercolor()用法及代碼示例
- Node.js GM equalize()用法及代碼示例
- Node.js GM paint()用法及代碼示例
- Node.js GM enhance()用法及代碼示例
- Node.js GM roll()用法及代碼示例
- Node.js GM sepia()用法及代碼示例
- Node.js GM charcoal()用法及代碼示例
- Node.js GM resize()用法及代碼示例
- Node.js GM transparent()用法及代碼示例
- Node.js GM thumbnail()用法及代碼示例
- Node.js GM chop()用法及代碼示例
注:本文由純淨天空篩選整理自nitin_sharma大神的英文原創作品 Node.js | fsPromises.writeFile() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。