Skip to content
This repository has been archived by the owner on Feb 22, 2023. It is now read-only.

e8-XiaoMengDuan/react-native-unzipLiu

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

React Native UnzipLiu npm npm

Unzip for React Native App

This is for GZip file

Version 1.0.6 Add dismiss keyboard function

Version 1.0.3 Add Zip and Unzip function

Version 1.0.7 remove keyboard in Version 1.0.6

Installation

npm install react-native-unzipliu --save
react-native link react-native-unzipliu

Usage

import it into your code

import { unGzip } from 'react-native-unzipliu';

API

unGzip(source: string, target: string): Promise

unzip from source file to target file

Example

const sourcePath = `${DocumentDirectoryPath}/myFile.zip`;
const targetPath = `${DocumentDirectoryPath}/myFile.txt`;

unGzip(sourcePath, targetPath)
.then((path) => {
  console.log(`unzip completed at ${path}`);
})
.catch((error) => {
  console.log(error);
});