// import React, { useEffect } from "react"; // import * as FileSystem from "expo-file-system"; // import { Button, Image, View, Text } from "react-native"; // import * as ImagePicker from "expo-image-picker"; // import Constants from "expo-constants"; // import * as Permissions from "expo-permissions"; // export default function ScreenMediaCache() { // FileSystem.readDirectoryAsync(FileSystem.documentDirectory).then((p) => { // console.log(p); // }); // useEffect(() => { // (async () => { // if (Constants.platform.ios) { // const { status } = await Permissions.askAsync(Permissions.CAMERA_ROLL); // if (status !== "granted") { // alert("Sorry, we need camera roll permissions to make this work!"); // } // } // })(); // }, []); // return ( // // This is the media cache screen. //