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
get function creating files with size 0 and nothing else happens. code:
let ftp = new JsFtp({ host: settings.host, port: settings.port, user: settings.user, pass: settings.pass, debug: console.log, debugMode: true, }); ftp.get('/popup_flag.txt', './popup_flag.txt', function (err) { if (err) { console.error('ftp.get failed.', err); return; } console.log('-', 'downloaded', 'downloaded successfully'); });
I could not get any logs of by running this code, ./popup_flag.txt file is created but it is empty.
./popup_flag.txt
NodeJS: v12.16.3 OS: Windows 10
this my might be related to #284 and #285
tried using another library basic-ftp which worked. I guess it is NodeJS version issue.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
get function creating files with size 0 and nothing else happens.
code:
I could not get any logs of by running this code,
./popup_flag.txt
file is created but it is empty.NodeJS: v12.16.3
OS: Windows 10
this my might be related to #284 and #285
tried using another library basic-ftp which worked. I guess it is NodeJS version issue.
The text was updated successfully, but these errors were encountered: