i have try following code
- Code: Select all
File routesRoot = Environment.getExternalStorageDirectory();
if (!routesRoot.canWrite())
System.out.println("can't write root");
if (!routesRoot.canRead())
System.out.println("can't read root");
And get poth can't read , write to sdcard now i search for solving that problem
while i have set permission
- Code: Select all
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
Can any one help or advice ?



