jellyfin-web/src/components/filesystem.js
Thorben Bräutigam 521f09f79f Fix Issue #213
2019-03-27 15:38:37 +01:00

18 lines
560 B
JavaScript

define([], function () {
'use strict';
return {
fileExists: function (path) {
if (window.NativeShell && window.NativeShell.FileSystem) {
return window.NativeShell.FileSystem.fileExists(path);
}
return Promise.reject();
},
directoryExists: function (path) {
if (window.NativeShell && window.NativeShell.FileSystem) {
return window.NativeShell.FileSystem.directoryExists(path);
}
return Promise.reject();
}
};
});