node删除、复制文件或文件夹示例代码(2)

/** * @des fs-extra 包实现 * api参考: https://github.com/jprichardson/node-fs-extra */ function fsExtra() { async function copy() { try { await fsEx.copy(path.join(__dirname + '/p'), path.join(__dirname + '/d')) console.log('success'); } catch (error) { console.log(error); } } copy() }

可执行源码: github.com/NameHewei/n

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/1f7baeaf0dc45a5ef3130db1f83f048c.html