Let's say I have this content uri
content:///com.test.mypackage/provider_path
I'm using FileProvider for this content uri and was constructed using
Uri photoUri = FileProvider.getUriForFile(MainActivity.this, "com.test", image);
since I'm using FileProvider I need to specify a path in an xml resource;
<external-path name="external_files" path="Folder1/"/>
From the generated content uri specified above, does the directory structure for this is:
com.test.mypackage > Folder1
I don't know if the content uri points out to a directory. Btw I'm trying to save an image to a directory using FileProvider.