nativescript-handle-file-new
This module gives you a tool to download, choose folder to save and then open an app to open file.
npm i --save nativescript-handle-file-new
- Version: 1.0.0
- GitHub:
- NPM: https://www.npmjs.com/package/nativescript-handle-file-new
- Downloads:
- Last Day: 0
- Last Week: 0
- Last Month: 0
nativescript-handle-file
This module gives you a tool to download, choose folder to save and then open an app to open file.
Instalation
tns plugin add nativescript-handle-file
How to use
Import class and instance it.
import {HandleFile} from 'nativescript-handle-file';
let handleFile = new HandleFile();
handleFile.open({
name : "name-of-file.extension",
url: "path-to-file",
directory: "directory to save", // only in android [downloads, pictures, movies, music]
tittle: "title to choose apps" // only in android
}).then(result => {
//return true if success
})