We need to convert a file path to a content uri and pass on for subsequent processing to a common component. When we use "Uri.fromFile(file)" it returns a file uri and not a content uri. Please let us know how to get this converted. Appreciate your help.
for (File file : fileBaseFolder.listFiles()) {
Uri convertedUri = Uri.fromFile(file);//Need to convert this Uri to a Content uri
.........
}