native-script文件处理-cghislai
由cghislai编写 | v6.4.1-rc.1
接收一个URL,下载并提示可以打开该文件的APP列表。
npm i --save nativescript-handle-file-cghislai

native-script文件处理

此模块为您提供下载、选择保存文件夹并打开应用以打开文件的工具。

安装

tns plugin add nativescript-handle-file

如何使用

导入类并实例化。

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