Home
last modified time | relevance | path

Searched refs:tmpFile (Results 1 – 3 of 3) sorted by relevance

/expo/apps/native-component-list/src/screens/
H A DSharingScreen.tsx31 const tmpFile = FileSystem.cacheDirectory + 'chapeau.png';
35 await FileSystem.copyAsync({ from: asset.localUri!, to: tmpFile });
36 await Sharing.shareAsync(tmpFile, {
H A DFileSystemScreen.tsx224 const tmpFile = FileSystem.cacheDirectory + 'test.html';
226 await FileSystem.copyAsync({ from: asset.localUri!, to: tmpFile });
227 const result = await FileSystem.readAsStringAsync(tmpFile);
/expo/packages/expo-updates/android/src/main/java/expo/modules/updates/
H A DUpdatesUtils.kt124 val tmpFile = File(destination.absolutePath + ".tmp") in <lambda>() constant
125 FileUtils.copyInputStreamToFile(digestInputStream, tmpFile) in <lambda>()
137 if (!tmpFile.renameTo(destination)) { in <lambda>()