node.js无法使用非ascii字符

时间:2015-12-18 07:15:55

标签: javascript node.js non-ascii-characters

在Windows 10上使用node.js,我正在尝试打开文件名中包含非ascii字符的文件。 Node说这些文件不存在。例如:

var songfile = "G:/Music/Music/113/113 degrés/03 36 quai des orfevres.mp3"    

fs.open(songfile, 'r', function(err, fd) {
  if (err) winston.error('file does not exist: ', songfile);
  else winston.info('file exists: ', fd);
});

有办法解决这个问题吗?

0 个答案:

没有答案