[android] Check writeable path with "/" in the end for external sd-card.

This commit is contained in:
vng 2013-05-20 16:37:51 +03:00 committed by Alex Zolotarev
parent 4a5606bec3
commit e9ae7026c0

View file

@ -137,7 +137,7 @@ public class StoragePathActivity extends ListActivity
{
try
{
final File f = new File(path);
final File f = new File(path + "/");
if (f.exists() && f.isDirectory() && f.canWrite())
{
if (findItemByPath(path) != -1)