@ionic-native/file-path

  • Version 5.36.0
  • Published
  • 10.8 kB
  • 1 dependency
  • MIT license

Install

npm i @ionic-native/file-path
yarn add @ionic-native/file-path
pnpm add @ionic-native/file-path

Overview

Ionic Native - Native plugins for ionic apps

Index

Variables

variable FilePath

const FilePath: FilePathOriginal;

    Classes

    class FilePathOriginal

    class FilePathOriginal extends IonicNativePlugin {}
    • File Path filesystem

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

      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));

    method resolveNativePath

    resolveNativePath: (path: string) => Promise<string>;
    • Resolve native path for given content URL/path.

      Parameter path

      Content URL/path.

      Returns

      {Promise}

    Package Files (1)

    Dependencies (1)

    Dev Dependencies (0)

    No dev dependencies.

    Peer Dependencies (2)

    Badge

    To add a badge like this onejsDocs.io badgeto your package's README, use the codes available below.

    You may also use Shields.io to create a custom badge linking to https://www.jsdocs.io/package/@ionic-native/file-path.

    • Markdown
      [![jsDocs.io](https://img.shields.io/badge/jsDocs.io-reference-blue)](https://www.jsdocs.io/package/@ionic-native/file-path)
    • HTML
      <a href="https://www.jsdocs.io/package/@ionic-native/file-path"><img src="https://img.shields.io/badge/jsDocs.io-reference-blue" alt="jsDocs.io"></a>