node-ftp
node-ftp copied to clipboard
An FTP client module for node.js
I'm downloading with the following code files from my ftp server but the code is downloading sporadically not the whole file. For example I have a file on the ftp...
Hi! i'm having an issue, using node-ftp on electron, running on windows. i'm developing it on a mac and it works very well in developement mode and in production mode,...
I don't know why it is giving me an error since it is creating the directory. I can put an empty error callback function in mkdir but I'd rather know...
I have a method to download file from FTP server and it works fine on smaller files, but when I use it to download file of ~5GB size of zip...
How can i use ftp client over HTTP proxy. var c = new client(); c.on('ready', function () { //my codes }); c.connect({ host: ***, user: '***', password: '***' });
For some reason either the callback function is not called when get is executed or the console write stream is lost. This is when you connect to a server and...
I have an FTP server that periodically sends 451 responses. When these occur during a file transfer the procedure just seems to hang without calling any expected callbacks. The error...
In my use case, I make a client just to stream one file from a server, and then I close the connection. Trouble is there's a _keepalive timer that appears...
When reading current `lib/connection.js` implementation ( commit 7dff82f ) I noticed that the passive socket reference is mainly written as `_pasvSock` but sometimes written `_pasvSocket` (with the trailing characters 'et'...
I'm running into a weird issue where if the file path exists, the file downloads just fine, but if the path doesn't exist and I call `mkdir`, it downloads an...