我在安装包' clifro'时遇到了以下问题。我无法弄清楚究竟是什么问题。我只包括了安装过程的尾部。
我一直在使用R Studio版本0.99.441。
function creatingFolder(fileSystem) {
var entry = fileSystem.root;
entry.getDirectory("test", {create: true, exclusive: false}, win, error);
}
function win(dir) {
console.log("Created dir "+dir.name);
console.log("Created dir "+dir.fullPath);
console.log("Created dir NativePath" + dir.nativeURL);
}