We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I've already found solution.
Ftp.prototype.rename = function(from, to, callback) { this.raw("rnfr", from, err => { if (err) { return callback(err); } this.raw("rnto", to, callback); }); };
Here, functions in lower case. Changing to upper case fixed problems.
Ftp.prototype.rename = function(from, to, callback) { this.raw("RNFR", from, err => { if (err) { return callback(err); } this.raw("RNTO", to, callback); }); };
Error before fix: 501 Bad sequence of commands This solutiuons works for me.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I've already found solution.
Here, functions in lower case. Changing to upper case fixed problems.
Error before fix: 501 Bad sequence of commands
This solutiuons works for me.
The text was updated successfully, but these errors were encountered: