Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用 nodejs mtp 模块https://github.com/panuhorsmalahti/mtp来获取文件。
但我找不到将文件复制到本地磁盘的方法。我使用 OSX。
谢谢!
感谢您发布模块!我正在寻找一个 MTP 节点模块
回答
这是在 node.js 中复制文件的方法:
var fs = require('fs'); fs.createReadStream('doc.txt').pipe(fs.createWriteStream('doc_copy.txt'));