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
The sharing address must have its backslashes doubled. (L'adresse du partage doit obligatoirement avoir ses anti-slashs doublés.)
const Smb = require('samba-client'); const samba = new Smb({ 'contoso.corp.local', 'usr12345', 'P@ssw0rd', '\\\\computername\\share' }); samba.getFile('file.txt', '/folder/file.txt');
... \computernameshare: Not enough '\' characters in service ...
const Smb = require('samba-client'); const samba = new Smb({ 'contoso.corp.local', 'usr12345', 'P@ssw0rd', '\\\\\\\\computername\\\\\\share' }); samba.getFile('file.txt', '/folder/file.txt');
Change your line 20
- this.address = options.address; + this.address = wrap(options.address);
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The sharing address must have its backslashes doubled. (L'adresse du partage doit obligatoirement avoir ses anti-slashs doublés.)
With Error
Without error
Correction proposal
Change your line 20
The text was updated successfully, but these errors were encountered: