在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);
});
有办法解决这个问题吗?