expo-easy-fs
v0.1.1
Published
A simple file operation tool for expo
Downloads
5
Maintainers
Readme
expo-easy-fs
A simple file operation tool that supports only the Android platform. Used to supplement the missing features in expo-file-system.
Install
npm install expo-easy-fs
or
yarn add expo-easy-fs
API
copyFileToDownload
Moves a file to the system's download directory.
const sourceFileUri = 'path/to/the/file.zip';
const destinationFilename = 'file.zip';
await copyFileToDownload(sourceFileUri, destinationFilename);