diff options
Diffstat (limited to 'js/io/utils')
-rw-r--r-- | js/io/utils/file-utils.js | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/js/io/utils/file-utils.js b/js/io/utils/file-utils.js index 0afdffc6..0a4d9687 100644 --- a/js/io/utils/file-utils.js +++ b/js/io/utils/file-utils.js | |||
@@ -4,8 +4,6 @@ No rights, expressed or implied, whatsoever to this software are provided by Mot | |||
4 | (c) Copyright 2011 Motorola Mobility, Inc. All Rights Reserved. | 4 | (c) Copyright 2011 Motorola Mobility, Inc. All Rights Reserved. |
5 | </copyright> */ | 5 | </copyright> */ |
6 | 6 | ||
7 | var fileSystem = require("js/io/system/coreioapi").CoreIoApi; | ||
8 | |||
9 | var FileUtils = exports.FileUtils = Object.create(Object.prototype, { | 7 | var FileUtils = exports.FileUtils = Object.create(Object.prototype, { |
10 | 8 | ||
11 | /*** | 9 | /*** |
@@ -61,7 +59,7 @@ var FileUtils = exports.FileUtils = Object.create(Object.prototype, { | |||
61 | 59 | ||
62 | uri = ""+folderUri+fileUri; | 60 | uri = ""+folderUri+fileUri; |
63 | 61 | ||
64 | response = fileSystem.fileExists({"uri":uri}); | 62 | response = this.application.ninja.coreIoApi.fileExists({"uri":uri}); |
65 | if(!!response && response.success && (response.status === 204)){ | 63 | if(!!response && response.success && (response.status === 204)){ |
66 | status = true; | 64 | status = true; |
67 | }else if(!!response && response.success && (response.status === 404)){ | 65 | }else if(!!response && response.success && (response.status === 404)){ |