Can any one help in that problem
when i try that code
File routesRoot = Environment.getExternalStorageDirectory();
if (!routesRoot.canWrite())
System.out.println("can't write root");
if (!routesRoot.canRead())
System.out.println("can't read root");
when run program both can’t write /read occure
I have set permission to access sdcard what is the problem ??
Do you have this in your manifest.xml??
From android SDK ver 4, you have to specify this in your manifest file to give the permissions.