17 lines
414 B
JavaScript
17 lines
414 B
JavaScript
import React from "react";
|
|
import { View, Text } from "react-native";
|
|
import * as FileSystem from "expo-file-system";
|
|
|
|
export default function ScreenMediaCache() {
|
|
console.log("DocDir", FileSystem.documentDirectory);
|
|
|
|
FileSystem.readDirectoryAsync(FileSystem.documentDirectory).then((p) => {
|
|
console.log(p);
|
|
});
|
|
return (
|
|
<View>
|
|
<Text>This is the media cache screen.</Text>
|
|
</View>
|
|
);
|
|
}
|