我目前正在尝试从Debian机器连接到SMB服务器。我已经从https://github.com/bchelli/node-smb2下载了SMB2-Client,我已经完成了示例

var SMB2 = require('smb2');

// create an SMB2 instance
var smb2Client = new SMB2({
  share:'\\\\xxx/appfolder/\\'
, domain:'xxx'
, username:'teste'
, password:'teste'
});


smb2Client.exists('/Base_dados.mdb', function (err, exists) {
    if (err) throw err;
    console.log(exists ? "it's there" : "it's not there!");
});


我收到当前错误

  /home/sergio/Desktop/node-access/index.js:14
    if (err) throw err;
                   ^


如果有人对如何解决这个问题有任何想法,将不胜感激。

问候。

最佳答案

问题是基于路径

'\\\\xxx\\app_folder'


解决了问题。

07-24 16:21