mscdex / node-ftp

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

Missing chmod function #60

Closed codeanywhere closed 11 years ago

codeanywhere commented 11 years ago

I find this function missing. I've added

FTP.prototype.chmod = function(path, mod, cb) { this._send('CHMOD ' + mod + ' ' + path, cb); };

to "connection.js". Would be nice to have this function included in on the following versions.

mscdex commented 11 years ago

SITE capability added in 4593c6a.