forked from organicmaps/organicmaps
[android] Check writeable path with "/" in the end for external sd-card.
This commit is contained in:
parent
4a5606bec3
commit
e9ae7026c0
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue