Why not login to Qiita and try out its useful features?

We'll deliver articles that match you.

You can read useful information later.

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

Qiita Conference 2025 will be held!: 4/23(wed) - 4/25(Fri)

Qiita Conference is the largest tech conference in Qiita!

Keynote Speaker

ymrl、Masanobu Naruse, Takeshi Kano, Junichi Ito, uhyo, Hiroshi Tokumaru, MinoDriven, Minorun, Hiroyuki Sakuraba, tenntenn, drken, konifar

View event details
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?