So I'm using Expo's Camera API to take a picture, like so:
takePicture = async function() {
if(this.camera) {
this.camera.takePictureAsync().then(data => {
CameraRoll.saveToCameraRoll(data.uri);
}).then(() => {
this.setState({
photoId: this.state.photoId + 1,
});
});
}
};
Now, I'd like to specifically retrieve the pictures I take with this app to work with later. I figure an easy way to do this would be if the app saved its pictures to a separate folder in the camera roll, much like how Instagram makes its own folder in there.
How would I go about having the app create its own folder in the camera roll, and then saving pictures to it?
On Android, you can use react-native-fetch-blob and its File System Access API (PictureDir constant).
For example, I do:
https://github.com/wkh237/react-native-fetch-blob/wiki/File-System-Access-API