2015-05-29 19:51:33 -04:00
|
|
|
|
(function () {
|
|
|
|
|
|
|
|
|
|
window.FileSystem = {
|
|
|
|
|
|
|
|
|
|
fileExists: function (path) {
|
2015-06-02 01:46:06 -04:00
|
|
|
|
return false;
|
2015-05-30 10:32:18 -04:00
|
|
|
|
return NativeFileSystem.fileExists(path);
|
2015-05-31 14:22:51 -04:00
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
translateFilePath: function (path) {
|
|
|
|
|
return NativeFileSystem.translateFilePath(path);
|
2015-05-29 19:51:33 -04:00
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
})();
|