Flutter教程

File Path

Contents

This plugin allows you to resolve the native filesystem path for Android content URIs and is based on code in the aFileChooser library.

https://github.com/hiddentao/cordova-plugin-filepath

联系我们?

If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic's experts offer official maintenance, support, and integration help.

Contact Us Today!

Ionic File Path插件的安装(Installation)

ionic cordova plugin add cordova-plugin-filepath npm install @ionic-native/file-path
Ionic EE comes with fully supported and maintained plugins from the Ionic Team. Learn More or Contact Us
ionic enterprise register --key=YOURPRODUCTKEY npm install @ionic-enterprise/file-path

Ionic File Path插件支持的平台(Supported Platforms)

  • Android

Ionic File Path插件的用法(Usage)

import { FilePath } from '@ionic-native/file-path/ngx';

constructor(private filePath: FilePath) { }

...

this.filePath.resolveNativePath(path)
  .then(filePath => console.log(filePath))
  .catch(err => console.log(err));