23
9

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

node.js で簡単にファイルコピーができるようになってました。

Last updated at Posted at 2017-11-03

確か、Node.js の昔のバージョンではファイルのコピーってマニアックな書き方をする必要があったかと思います。
v8.9.0 LTS を入れたら簡単にファイルコピーができるようになっていました。
(v8.5.0から可能なようです。)

####fs.copyFile(src, dest[, flags], callback)#
Added in: v8.5.0

fs.copyFile を試してみたソースが下記。

/* ファイルのコピー */
const fs = require('fs');

fs.copyFile('data.txt', 'data.bak', (err) => {
    if (err) {
        console.log(err.stack);
    }
    else {
        console.log('Done.');
    }
});
23
9
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
23
9

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?