📜  Node.js fs.filehandle.datasync() 方法

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

Node.js fs.filehandle.datasync() 方法

fs.filehandle.datasync()方法是文件系统模块中fs.filehandle类的内置应用程序编程接口,用于同步文件的数据。

句法:

const filehandle.datasync()

参数:此方法不接受任何参数。
返回值:此方法返回一个未决的承诺,其中不包含任何值。

下面的程序说明了fs.filehandle.datasync()方法的使用。

示例 1:文件名:index.js

Javascript
// Node program to demonstrate the
// filehandle.datasync() method
const fs = require('fs');
const fsPromises = fs.promises;
 
console.log("File content before operation: "
        + (fs.readFileSync('example.txt')));
 
// Initiating asyncrionise function
async function funct() {
 
    // Initializing filehandle
    let filehandle = null;
 
    try {
 
        // Creating and initiating  filehandle
        filehandle = await
            fsPromises.open('example.txt', 'r+');
 
        // Syncing the data by using
        // datasync() method
        await filehandle.datasync();
 
    } finally {
 
        if (filehandle) {
 
            // Close the file if it is opened.
            console.log("data synced successfully");
            console.log("Content after operation: "
                + (fs.readFileSync('example.txt')));
 
            await filehandle.close();
        }
    }
}
 
funct().catch(console.error);


Javascript
// Node.js program to demonstrate the
// filehandle.datasync() method
const fs = require('fs');
const fsPromises = fs.promises;
 
// Data for the new file
let data = "This is a file containing"
        + " a collection of books.";
 
// Name of the file to be created
let file = "books.txt";
 
// Creating the new file 'books.txt'
fs.writeFile(file, data, (err) => {
 
    // Catching error
    if (err) {
        console.log(err);
    }
});
 
// Using fs.exists() method
fs.exists(file, (exists) => {
    if (exists) {
        console.log("content of file before"
                + " operation: " +
                (fs.readFileSync(file)));
    }
});
 
// Initiating asyncrionise function
async function funct() {
 
    // Initializing filehandle
    let filehandle = null;
 
    try {
 
        // Creating and initiating  filehandle
        filehandle = await
            fsPromises.open(file, 'r+');
 
        // Syncing the data by using
        // datasync() method
        await filehandle.datasync();
 
    } finally {
 
        if (filehandle) {
 
            // Close the file if it is opened.
            console.log("data synced successfully");
            console.log("content of file after"
                + " operation: " +
                (fs.readFileSync(file)));
 
            await filehandle.close();
        }
    }
}
 
funct().catch(console.error);


程序目录结构:

使用以下命令运行index.js文件:

node index.js

输出:

File content before operation: Content of the example.txt file
data synced successfully
Content after operation: Content of the example.txt file

示例 2:文件名:index.js

Javascript

// Node.js program to demonstrate the
// filehandle.datasync() method
const fs = require('fs');
const fsPromises = fs.promises;
 
// Data for the new file
let data = "This is a file containing"
        + " a collection of books.";
 
// Name of the file to be created
let file = "books.txt";
 
// Creating the new file 'books.txt'
fs.writeFile(file, data, (err) => {
 
    // Catching error
    if (err) {
        console.log(err);
    }
});
 
// Using fs.exists() method
fs.exists(file, (exists) => {
    if (exists) {
        console.log("content of file before"
                + " operation: " +
                (fs.readFileSync(file)));
    }
});
 
// Initiating asyncrionise function
async function funct() {
 
    // Initializing filehandle
    let filehandle = null;
 
    try {
 
        // Creating and initiating  filehandle
        filehandle = await
            fsPromises.open(file, 'r+');
 
        // Syncing the data by using
        // datasync() method
        await filehandle.datasync();
 
    } finally {
 
        if (filehandle) {
 
            // Close the file if it is opened.
            console.log("data synced successfully");
            console.log("content of file after"
                + " operation: " +
                (fs.readFileSync(file)));
 
            await filehandle.close();
        }
    }
}
 
funct().catch(console.error);

使用以下命令运行index.js文件:

node index.js

输出:

content of file before operation: This is a file containing a collection of books.
data synced successfully
content of file after operation: This is a file containing a collection of books.

运行程序前的目录结构:

运行程序后的目录结构:

参考: https://nodejs.org/dist/latest-v12.x/docs/api/fs.html#fs_filehandle_datasync