Node.js的FTP客户端nodeftp.zip

u735696828 16 0 NONE 2020-06-21 13:06:30

node-ftp是Node.js的FTP客户端,提供FTP服务器的异步交流接口。 示例:   var Client = require('ftp');   var c = new Client();   c.on('ready', function() {     c.list(function(err, list) {       if (err) throw err;       console.dir(list);       c.end();     });   });   // connect to localhost:21 as anonymous   c.conn

用户评论
请输入评论内容
评分:
暂无评论