How to get file from URI | Expo | React Native

11,442

I think you could use react-native-fs. This here should work and print out the contents of the CSV file to the console.

App.js

var RNFS = require('react-native-fs');

Linking.getInitialURL().then((url) => {
  if (url) {
    RNFS.readFile(url).then((data) => {
      console.log(data);
    }

}).catch(err => console.error('An error occurred', err));
Share:
11,442
Rutul Patel
Author by

Rutul Patel

Coding and writing stuff for Humans to Read and Machine to Understand.

Updated on June 17, 2022

Comments

  • Rutul Patel
    Rutul Patel almost 2 years

    I have ejected project of the expo.

    After changing info.plist, now I am able to get my app in the list of "open with app list" and actually able to open that file with my expo(React native app).

    App.js

    Linking.getInitialURL().then((url) => {
      if (url) {
            console.log(url);
        }
    
    }).catch(err => console.error('An error occurred', err));
    

    this code is giving me this URL.

    file:///private/var/mobile/Containers/Data/Application/7E55EB55-7C49-4C0C-B4CB-63AC4F49689E/Documents/Inbox/matters-3.csv
    

    So, that means now I have URL of the email attachment, but How am I able to get the data of that csv string in my app?

    So I am assuming, when I click open with my app. The URL that is passed into my app from the system is actually a copy of the document that is placed somewhere in our app’s directory.

    But when I trying to access this file with Expo.FileSystem. readAsStringAsync it's giving me an error says, the file is not readable.

    is there anything to do with storage permission?

    Need Help....?

  • Rutul Patel
    Rutul Patel over 5 years
    but when I create a file with writeFile and try to read it. It's work fine.
  • Rutul Patel
    Rutul Patel over 5 years
    Do I have to specify anything while downloading file ?