mscdex / node-ftp

An FTP client module for node.js
MIT License
1.13k stars 243 forks source link

Add easier get command with local file parameter #94

Open Gawdl3y opened 10 years ago

Gawdl3y commented 10 years ago

Saving the file locally is one of the most common use cases of the get command, so it'd be extremely useful and save time if the library handled saving the ReadableStream to a file. Method example: ftp.get('/path/to/some/remote/file.bob', '/path/to/local/file.bob', function(err) {...});