mirror of
https://github.com/moparisthebest/keepass2android
synced 2024-11-16 22:45:02 -05:00
74acd19092
* added functionality to file storage interface and (some) implementations to delete files/folders, create folders, list contents -> Dropbox functionality implemented
30 lines
604 B
C#
30 lines
604 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
using Android.App;
|
|
using Android.Content;
|
|
using Android.OS;
|
|
using Android.Runtime;
|
|
using Android.Views;
|
|
using Android.Widget;
|
|
using KeePassLib.Serialization;
|
|
using Keepass2android.Javafilestorage;
|
|
|
|
namespace keepass2android.Io
|
|
{
|
|
public class DropboxFileStorage: JavaFileStorage
|
|
{
|
|
public DropboxFileStorage(Context ctx, IKp2aApp app) :
|
|
base(new Keepass2android.Javafilestorage.DropboxFileStorage(ctx), app)
|
|
{
|
|
}
|
|
|
|
protected override string Protocol
|
|
{
|
|
get { return "dropbox"; }
|
|
}
|
|
}
|
|
} |