Beispiel #1
0
    //public  string GetAPItoken();
    public string GetRecentPath()
    {
        if (_type == eCloudType.NotSelected)
        {
            return("none");
        }

        string res = "none";

        switch (_type)
        {
        case eCloudType.bCloudDrive:
        {
            res = _bDriveAPI.GetRecentPath();
        }
        break;

        case eCloudType.GoogleDrive:
        {
            res = _bGoogleAPI.GetRecentPath();
        }
        break;
        }
        return(res);
    }