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

Latest commit

 

History

History
34 lines (23 loc) · 536 Bytes

README.md

File metadata and controls

34 lines (23 loc) · 536 Bytes

React Native Directory Picker

Our npm path

Install

npm i --save react-native-directory-picker

Or

yarn add react-native-directory-picker

Usage

Usage in JavaScript

import {selectDirectory} from 'react-native-directory-picker';

// ...

selectDirectory().then((path) => {
  console.log(`The path is ${path}`);
});