node-ftps
node-ftps copied to clipboard
FTP, FTPS and SFTP client for node.js, mainly a lftp wrapper.
Is there a way to rewrite the local file if it already exists with `get` or `getFile`?
I happened to have a password to one site containing the string "&". With escape enabled this resulted in a the password sent to lftp being escaped which resulted in...
Is this library compatible with async/await? I tried this: ``` var result = await ftps.mirror({ remoteDir: remote_path, // + '/.', localDir: commit_dir + '/' + commit_diffs.commit + '/.', //parallel: true,...
I am attempting to transfer a file using SFTP on a windows machine. When the package attempts to send the file, it is using an incorrect path. I am passing...
lftp every times asks me password confirmation. What settings or commands help to avoid that situation? Because I need an app works in background?
This is my code. If I give a wrong (denied) path, the error is in res.error. However, even if I give the correct path, the result is also in res.error...
var ftps = new FTPS({ host: '192.168.1.8', // required username: 'test', // Optional. Use empty username for anonymous access. password: '123', // Required if username is not empty, except when...
User and password fields are already between quotes: add the escape character '\' gives wrong password or username.
FTP { options: { host: 'host', username: 'username', password: 'password', port: 990, escape: true, retries: 1, timeout: 10, retryInterval: 5, retryIntervalMultiplier: 1, requiresPassword: true, protocol: 'sftp', autoConfirm: true, cwd: '',...