无法在Android设备上查看文件

时间:2019-01-03 10:05:30

标签: react-native

我正在一个React Native项目中,我试图在其中创建文件并将内容写入其中。为此,我正在使用react-native-fs,但是在android设备中找不到创建的文件。

也尝试使用ExternalStorageDirectoryPath写入文件,但是面临相同的问题。具有讽刺意味的是,使用相同的代码,我可以读取从下面的代码生成的文件,

        var RNFS = require('react-native-fs');
        var path = RNFS.DocumentDirectoryPath  + '/test.txt';
        // write the file
        RNFS.writeFile(path, 'content to store in file', 'utf8')
        .then((success) => {
        console.log('FILE WRITTEN!');
        })
        .catch((err) => {
        console.log(err.message);
        });

运行上述代码后,日志显示为“ FILE WRITTEN”。我在另一位开发人员https://github.com/itinance/react-native-fs/issues/452

的github上看到了相同的问题

0 个答案:

没有答案