cordova-plugin-file icon indicating copy to clipboard operation
cordova-plugin-file copied to clipboard

Apache Cordova File Plugin

Results 147 cordova-plugin-file issues
Sort by recently updated
recently updated
newest added
trafficstars

This PR saves the File API before overwrite. Even though this does not solve #316 or #265, at least it allows the applications to still use the native File API.

`$('#saveFile').bind('click', function download() { var data = generateCodeFile(); var blob = new Blob([data], { type: "application/json" }); if (window.cordova && cordova.platformId !== "browser") { document.addEventListener("deviceready", function() { var folderPath =...

This plugin is large with many headings, getting into the topic without a TOC is wasteful. toc created with npx doctox ### Platforms affected ### Motivation and Context ### Description...

# Bug Report Hi, we had this plugin in our Capacitor project as a dependency of `cordova-plugin-advanced-http`. It is not possible to use the [Browsers File API](https://developer.mozilla.org/en-US/docs/Web/API/File/File) with this plugin...

### Platforms affected ### Motivation and Context ### Description ### Testing ### Checklist - [ ] I've run the tests to see all new and existing tests pass - [...

I´m building a Cordova app for iOS (Vue / Quasar based [1]). I use the cordova-plugin-openwith-ios [2] Cordova plugin to share items (images, pdfs) from other apps to my app...

# Feature Request Hi everyone, I'm working on some app in which I need to download image and save it to gallery but unfortunately I'm unable to save image to...

https://github.com/apache/cordova-plugin-file/blob/5274cab39e3f96a8682a74ba28663f32611501c8/www/File.js#L31 Should implement `.arrayBuffer()` `.stream()` and `.text()`

https://github.com/apache/cordova-plugin-file/blob/5274cab39e3f96a8682a74ba28663f32611501c8/www/File.js#L37 `File.lastModifiedDate` is [deprecated](https://developer.mozilla.org/en-US/docs/Web/API/File/lastModifiedDate) and also removed in FF & Safari You should stop supporting it also and remove it (or at least throw a error message saying it's deprecated...

### Platforms affected Android ### Motivation and Context Felt like this could just be automatic rather than opt-in. ### Description Added gradle optimization file in `plugin.xml` reference. ### Testing Manual...

enhancement