cordova-plugin-file
cordova-plugin-file copied to clipboard
Apache Cordova File Plugin
# Feature Request ## Motivation Behind Feature This plugin overwrites standard Web API implementations like: | Plugin Clobber | Standard Web API | | -------------------- | ------------------------- | | [`window.File`](https://github.com/apache/cordova-plugin-file/blob/rel/6.0.1/plugin.xml#L49)...
# Bug Report When I try to save a file in the download/documents folder (on a mobile with android 10), the following error occurs: `FileError {code: 9}` The strange thing...
### Platforms affected None, Typescript type definition only ### Motivation and Context Typescript 4.4 [has introduced a lot of changes in `lib.dom.d.ts` file](https://github.com/microsoft/TypeScript-DOM-lib-generator/issues/1029), which raises a lot of compilation errors...
# Bug Report ## Problem ### What is expected to happen? Use of Cordova's `File`, `FileReader`, and probably other types, while using TypeScript, as normal. ### What does actually happen?...
# Bug Report If I try to resolve something like `http://localhost:8000/index.html` i get an `ENCODING_ERR` because of these lines: https://github.com/apache/cordova-plugin-file/blob/3e588763a5e49ea441a996bf4139efdf6f6a5f11/www/resolveLocalFileSystemURI.js#L55-L62 When i disable this code like i did here https://github.com/GitToTheHub/cordova-plugin-file/pull/1,...
# Feature Request ## Motivation Behind Feature The readme does not mention that this plugin will not work if we use Api level greater than 29. Please mention that so...
# Bug Report I was using ```cordova.file.dataDirectory``` for several years as a location to download images from server to be able to use them offline in my app. After updating...
I will not fill that issue, because Apache willn't fix plugin anyway I will just post a work-around: ```js var FileReader0 = FileReader ``` And it works with Cordova 11....
# Bug Report ## Problem The start of your TypeScript type definitions file contains a copyright notice claiming that it belongs to Microsoft: ``` // Type definitions for Apache Cordova...
### Platforms affected Electron ### Motivation and Context Use native nodejs functions for filesystem instead of writing files to chrome IndexedDB of electron app. Closes https://github.com/apache/cordova-plugin-file/issues/334 https://github.com/apache/cordova-plugin-file/issues/312 ### Testing https://github.com/zorn-v/cordova-electron-file-test...