我正在尝试将字符串写入这样的文件:
filename = await FileSystem.documentDirectory + tempname + ".txt";
await FileSystem.writeAsStringAsync(filename, "hello world", { encoding: FileSystem.EncodingTypes.UTF8 });
但未找到文件,我需要使用它来创建文件
await MediaLibrary.createAssetAsync(`${FileSystem.documentDirectory}${tempname}.txt`);
之后,该文件出现在document / DCIM / myfile.txt中。但是我知道使用createAssetAsync将创建一个附加文件。
我想知道writeAsStringAsync实际写入的文件在哪里?我使用getInfoAsync来显示文件位于
file:///data/user/0/host.exp.exponent/files/ExperienceData/%2540hkvega01%252Fstocktake-file-builder/456-2019-2-12.txt"
但是我没有找到这条路径。