thesunfei

Results 1 issues of thesunfei

Here are the codes: ``` const Client = require('ftp'); let c = new Client(); c.on('ready', function () { c.list(function (err, list) { if (err) throw err; console.log(list); }); }); c.connect({...