docs: optimize docs for SEO

This commit is contained in:
Daniel Sogl
2026-03-21 17:08:43 -07:00
parent d892dda497
commit 1a351b50f4
263 changed files with 4918 additions and 2564 deletions
+19 -10
View File
@@ -1,14 +1,10 @@
---
description: >-
File plugin for Cordova and Ionic. This plugin implements a File API allowing read/write access to files residing on the device. The File class implements…
---
# File
```
$ ionic cordova plugin add cordova-plugin-file
$ npm install @awesome-cordova-plugins/file
```
## [Usage Documentation](https://danielsogl.gitbook.io/awesome-cordova-plugins/plugins/file/)
Plugin Repo: [https://github.com/apache/cordova-plugin-file](https://github.com/apache/cordova-plugin-file)
This plugin implements a File API allowing read/write access to files residing on the device.
The File class implements static convenience functions to access files and directories.
@@ -32,7 +28,16 @@ this.file.checkDir(this.file.dataDirectory, 'mydir').then(_ => console.log('Dire
//www.w3.org/TR/2011/WD-file-system-api-20110419/ It also implements the FileWriter spec : http:
//dev.w3.org/2009/dap/file-system/file-writer.html
## Supported platforms
## Installation
```bash
ionic cordova plugin add cordova-plugin-file
npm install @awesome-cordova-plugins/file
```
**Plugin Repo:** [https://github.com/apache/cordova-plugin-file](https://github.com/apache/cordova-plugin-file)
## Supported Platforms
- Android
- Browser
@@ -40,3 +45,7 @@ this.file.checkDir(this.file.dataDirectory, 'mydir').then(_ => console.log('Dire
- macOS
- Windows
## Further Information
- [Installation Guide](../../installation.md)
- [FAQ](../../faq.md)