node-ftp icon indicating copy to clipboard operation
node-ftp copied to clipboard

An FTP client module for node.js

Results 13 node-ftp issues
Sort by recently updated
recently updated
newest added

The function lastMod relies on the FTP command MDTM. The MDTM command returns time strings that look like 19990929043300 meaning 1999-09-29 04:33:00. According to [RFC 3659](https://www.rfc-editor.org/rfc/rfc3659#page-11) these times are in...

I have a server that seems to accept latin-1 and not utf-8 only, and there is currently no way, to do this, could this be added?

When you call rmdir() with recursive=true on a non-existent directory it causes: > TypeError: Cannot read property '0' of undefined at deleteNextEntry (/opt/noderedftp/lib/node_modules/node-red/nodes/extra/ftp/node_modules/@icetee/ftp/lib/connection.js:808:21) at /opt/noderedftp/lib/node_modules/node-red/nodes/extra/ftp/node_modules/@icetee/ftp/lib/connection.js:830:5 at final (/opt/noderedftp/lib/node_modules/node-red/nodes/extra/ftp/node_modules/@icetee/ftp/lib/connection.js:515:11) at Object.cb...

Hi dude! did you forget to push the latest version to NPM?

After creating a ftp, doing many operations on it, I get this: ``` Error: read ECONNRESET at TLSWrap.onStreamRead (internal/stream_base_commons.js:205:27) { errno: -4077, code: 'ECONNRESET', syscall: 'read' } ``` This is...

Hi and thanks for updating this project. Would it be feasible to expose a PUT *write* stream (or its socket) in a clean way? Much like `get()` which provides a...

In some cases when I rewrite file on ftps server file get size 0 bite. When I analyse your code I found error, in "connection.js -> FTP.prototype._store -> _pasv ->...

Documentation currently states the following: > put(< mixed >input, < string >destPath, [< boolean >useCompression, ]< function >callback) - (void) - Sends data to the server to be stored as...