node-ftp
node-ftp copied to clipboard
An FTP client module for node.js
Error font when recieve data
``` { type: '-', name: 'Ãnh Nắng Cá»§a Anh - Anh Tú - Táºp 12 The Voice - Giá»ng Hát Viá»t 2017.mp4', target: undefined, sticky: false, rights: { user: 'rwx',...
get() always returns empty / no data
When I try to download a file from FTP server, by using `get()` method, it pipes to a local file, but does not write data. My code looks like that:...
proper UTF-8 handling
This code properly handles UTF-8 server responses and prevents double encoding.
sftp support?
Hi, I am trying to connect to a sftp server, but I'm unable to, as this module doesn't have sftp support. Is there any plan that node-ftp will support sftp...
For example, in the method ``` list ```, both ``` path ``` and ``` useCompression``` are optional, but when I invoke the method by ``` ftp.list(void (0), true, ()=> {})...
Duplicated uploads
I have a watcher on a folder that is supposed to upload all new files. ```JavaScript watcher.on('add', (pathAndFilename) => { logger.info(`File '${pathAndFilename}' was added`); ftpClient.on('ready', () => { ftpClient.put(pathAndFilename, pathAndFilename.split(path.sep).pop(),...
UTF-8 Problem while listing files
Hi, While I'm listing files. ftp list not getting the file names correctly. My file name is "Eylül.txt" Im getting "Eylül.txt" I think there is a utf-8 problem. Is there...
FTPS on tls, using port 990
Hello, I'm trying to connect using the implicit secure option with port 990. Here my configuration: ``` _connectionProperties.secure = true; _connectionProperties.secureOptions = { 'rejectUnauthorized': false }; ``` I've tried with...
How do you guys workaround such issue ? For some reason, I don't want to create a physical file and use the NodeJS Buffer instead. ``` const filename = '/in/remote_file.xml';...
I'm sure there are use cases out there other than mine but mine is that IBM z/OS mainframes allow submission of JCL jobs via FTP and the job id which...