本帖最后由 505681468 于 2024-5-10 18:08 编辑
不应该呀,写了啥?报错啥?
按原生方法读取文件不行吗
还是说你想要只判断文件是否存在
非 nwjs 环境是不能直接判断文件的
PC可以直接判断
安卓可以在安卓层暴露判断方法出来给js使用
IOS层和浏览器层就不知道了
StorageManager.exists = function(savefileId) { if (this.isLocalMode()) { return this.localFileExists(savefileId); } else { return this.webStorageExists(savefileId); } }; StorageManager.isLocalMode = function() { return Utils.isNwjs(); }; Utils.isNwjs = function() { return typeof require === 'function' && typeof process === 'object'; };
StorageManager.exists = function(savefileId) {
if (this.isLocalMode()) {
return this.localFileExists(savefileId);
} else {
return this.webStorageExists(savefileId);
}
};
StorageManager.isLocalMode = function() {
return Utils.isNwjs();
};
Utils.isNwjs = function() {
return typeof require === 'function' && typeof process === 'object';
};
|