FileProxy.js 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. /*
  2. *
  3. * Licensed to the Apache Software Foundation (ASF) under one
  4. * or more contributor license agreements. See the NOTICE file
  5. * distributed with this work for additional information
  6. * regarding copyright ownership. The ASF licenses this file
  7. * to you under the Apache License, Version 2.0 (the
  8. * "License"); you may not use this file except in compliance
  9. * with the License. You may obtain a copy of the License at
  10. *
  11. * http://www.apache.org/licenses/LICENSE-2.0
  12. *
  13. * Unless required by applicable law or agreed to in writing,
  14. * software distributed under the License is distributed on an
  15. * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  16. * KIND, either express or implied. See the License for the
  17. * specific language governing permissions and limitations
  18. * under the License.
  19. *
  20. */
  21. /*
  22. * FileProxy
  23. *
  24. * Register all File exec calls to be handled by proxy
  25. */
  26. module.exports = {
  27. copyTo: require('cordova-plugin-file.copyToProxy'),
  28. getDirectory: require('cordova-plugin-file.getDirectoryProxy'),
  29. getFile: require('cordova-plugin-file.getFileProxy'),
  30. getFileMetadata: require('cordova-plugin-file.getFileMetadataProxy'),
  31. getMetadata: require('cordova-plugin-file.getMetadataProxy'),
  32. getParent: require('cordova-plugin-file.getParentProxy'),
  33. moveTo: require('cordova-plugin-file.moveToProxy'),
  34. readAsArrayBuffer: require('cordova-plugin-file.readAsArrayBufferProxy'),
  35. readAsBinaryString: require('cordova-plugin-file.readAsBinaryStringProxy'),
  36. readAsDataURL: require('cordova-plugin-file.readAsDataURLProxy'),
  37. readAsText: require('cordova-plugin-file.readAsTextProxy'),
  38. readEntries: require('cordova-plugin-file.readEntriesProxy'),
  39. remove: require('cordova-plugin-file.removeProxy'),
  40. removeRecursively: require('cordova-plugin-file.removeRecursivelyProxy'),
  41. resolveLocalFileSystemURI: require('cordova-plugin-file.resolveLocalFileSystemURIProxy'),
  42. requestAllFileSystems: require('cordova-plugin-file.requestAllFileSystemsProxy'),
  43. requestFileSystem: require('cordova-plugin-file.requestFileSystemProxy'),
  44. setMetadata: require('cordova-plugin-file.setMetadataProxy'),
  45. truncate: require('cordova-plugin-file.truncateProxy'),
  46. write: require('cordova-plugin-file.writeProxy')
  47. };
  48. require('cordova/exec/proxy').add('File', module.exports);