[NodeJs]fs

538 ワード

調整したパラメータは特定の方法に依存するが、最初のパラメータは常に異常のために予約されている.
操作が成功したら、最初のパラメータは  null または  undefined
const fs = require('fs');

fs.stat('open/test', (error, stats) => {
    if (error) throw error;
    console.error(`    :${stats}`);
})
もう一つの関連ライブラリを紹介します.fs-extra
const fse = require('fs-extra');

fse.outputJsonSync(path.join('test', 'users.json'), {name: 'xuwei', age: 18});
fs-extraはすべてのfs方法を含み、同期と非同期の2つの方法を含む部分的方法を拡張している.