1.写一个Node.js程序,读取当前目录下的example.txt文件,并将文件的内容复制到一个新文件example-copy.txt中。使用fs模块和path模块中的函数实现。 path.join
时间: 2024-05-30 19:16:40 浏览: 182
Node.js复制文件的方法示例
const fs = require('fs');
const path = require('path');
const filePath = path.join(__dirname, 'example.txt');
const copyFilePath = path.join(__dirname, 'example-copy.txt');
fs.readFile(filePath, 'utf8', (err, data) => {
if (err) throw err;
fs.writeFile(copyFilePath, data, err => {
if (err) throw err;
console.log('文件复制成功');
});
});
阅读全文