qdevos
Results
2
comments of
qdevos
Here is a basic example ```javascript var Client = require('ftp'); var fs = require('fs'); var c = new Client(); c.on('ready', function() { c.list(function(err, list) { if (err) throw err; for(var...
I didn't have to handle this case. According to the documentation, object in list have a "type" property that distinguishes whether it is a file or a folder. On the...