added CreateFilePath method to IFileStorage and used it after file chooser for save
-> save as works with GDrive as well minor changes and fixes
This commit is contained in:
@@ -200,5 +200,12 @@ namespace keepass2android.Io
|
||||
{
|
||||
return ioc.GetDisplayName();
|
||||
}
|
||||
|
||||
public string CreateFilePath(string parent, string newFilename)
|
||||
{
|
||||
if (!parent.EndsWith("/"))
|
||||
parent += "/";
|
||||
return parent + newFilename;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user