📜  Node.js | fs.writeFileSync() 方法

📅  最后修改于: 2022-05-13 01:56:45.633000             🧑  作者: Mango

Node.js | fs.writeFileSync() 方法

Node.js 的“fs”模块实现了文件 I/O 操作。 fs 模块中的方法可以是同步的也可以是异步的。异步函数有一个回调函数作为最后一个参数,表示异步函数的完成。 Node.js 开发人员更喜欢异步方法而不是同步方法,因为异步方法在程序执行期间不会阻塞程序,而后者会阻塞。阻塞主线程在 Node.js 中是一种弊端,因此同步函数只能用于调试或没有其他选项可用时。 fs.writeFileSync() 是一种同步方法。如果指定的文件不存在,fs.writeFileSync() 会创建一个新文件。 'readline-sync' 模块也用于在运行时启用用户输入。
句法:

fs.writeFileSync( file, data, options )

参数:此方法接受三个参数,如上所述,如下所述:

  • 文件:它是一个字符串、缓冲区、URL 或文件描述整数,表示必须写入的文件的路径。使用文件描述符将使其行为类似于 fs.write() 方法。
  • 数据:它将被写入文件的字符串、缓冲区、TypedArray 或 DataView。
  • options:它是一个字符串或对象,可用于指定将影响输出的可选参数。它有三个可选参数:
    • encoding:它是一个字符串,它指定文件的编码。默认值为“utf8”。
    • mode:它是一个整数,指定文件模式。默认值为 0o666。
    • flag:它是一个字符串,它指定写入文件时使用的标志。默认值为“w”。

下面的示例说明了 Node.js 中的fs.writeFileSync() 方法

示例 1:

// Node.js program to demonstrate the
// fs.writeFileSync() method
  
// Import the filesystem module
const fs = require('fs');
  
let data = "This is a file containing a collection"
           + " of programming languages.\n"
 + "1. C\n2. C++\n3. Python";
  
fs.writeFileSync("programming.txt", data);
console.log("File written successfully\n");
console.log("The written has the following contents:");
console.log(fs.readFileSync("programming.txt", "utf8"));

输出:

File written successfully

The written has the following contents:
This is a file containing a collection of programming languages.
1. C
2. C++
3. Python

示例 2:

// Node.js program to demonstrate the
// fs.writeFileSync() method
  
// Import the filesystem module
const fs = require('fs');
  
// Writing to the file 5 times
// with the append file mode
for (let i = 0; i < 5; i++) {
  fs.writeFileSync("movies.txt",
    "Movie " + i + "\n",
    {
      encoding: "utf8",
      flag: "a+",
      mode: 0o666
    });
}
  
console.log("File written successfully 5 times\n");
console.log("The written file has the following contents:");
console.log(fs.readFileSync("movies.txt", "utf8"));

输出:

File written successfully 5 times

The written file has the following contents:
Movie 0
Movie 1
Movie 2
Movie 3
Movie 4

参考: https://nodejs.org/api/fs.html#fs_fs_writefilesync_file_data_options

示例 3:使用 readline 模块从用户获取文件名和文件数据的运行时输入

// Write Javascript code here
var readline = require('readline-sync'); 
var fs = require("fs"); 
    
var path = readline.question("Enter file name/path: "); 
  
console.log("Entered path : " + path); 
  
var data = readline.question("Enter file data: ");
  
//synchronous functions may throw errors 
//which can be handled using try-catch block
try {
  fs.writeFileSync(path, data,{flag:'a+'});   //'a+' is append mode
  console.log("File written successfully");
} catch(err) {
  console.error(err);
}
console.log("-----------------------------------------------");
try{
const data = fs.readFileSync(path,{encoding: "utf8"}); 
  console.log("File content is as follows:");
  // Display the file data 
  console.log(data); 
}catch(err){
console.log(err);
}

输出

示例 4:使用使用缓冲区的 readline 模块从用户获取文件数据的运行时输入

// Write Javascript code here
var fs = require("fs");
var readline = require('readline-sync'); 
var path = readline.question("Enter file name/path: "); 
  
console.log("Entered path : " + path); 
// 1024 specifies the buffer size. We can limit 
// the data size by this approach
var buf = new Buffer.alloc(1024);
buf = readline.question("Enter data:");
  
  
try {
  fs.writeFileSync(path, buf,{flag:'a+'});
  console.log("File written successfully");
} catch(err) {
  console.error(err);
}
console.log("-----------------------------------------------");
try{
const data = fs.readFileSync(path,{encoding: "utf8"}); 
  console.log("File content is as follows:");
  // Display the file data 
  console.log(data); 
}catch(err){
console.log(err);
}

输出