要使用fs.copyFile()
方法,您需要先導(dǎo)入fs
模塊。然后,您可以使用以下語法調(diào)用copyFile()
方法:
fs.copyFile(srcPath, destPath, callback)
參數(shù)說明:
srcPath
:要復(fù)制的源文件路徑。destPath
:要復(fù)制到的目標文件路徑。callback
:回調(diào)函數(shù),用于在復(fù)制完成后執(zhí)行。以下是一個使用fs.copyFile()
的例子:
const fs = require('fs');
// 定義源文件和目標文件路徑
const srcPath = 'path/to/source/file.txt';
const destPath = 'path/to/destination/file.txt';
// 調(diào)用copyFile()方法進行復(fù)制
fs.copyFile(srcPath, destPath, (err) => {
if (err) {
console.error(err);
return;
}
console.log('文件復(fù)制成功!');
});
請確保源文件和目標文件的路徑是正確的,并且您對目標文件的父文件夾具有寫入權(quán)限。