My application can read xml files, located on the sdcard. I read android artical:External Storage This artical said in android 4.4 you can read just from your application folder so how can I get xml files when the user put it on sdcard and how I can I read it from that place. Please give me an example or tutorial.
Here is the code, I currently have:
File myInternalFile;
String filepath = "plane";
private String filename = "Pro.xml";
String path = context.getExternalFilesDir(null).getAbsolutePath();
myInternalFile = new File(path, filename);