Skip to content

Instantly share code, notes, and snippets.

@rafaelrmou
Created March 29, 2015 23:03
Show Gist options
  • Save rafaelrmou/ce552b8d7227f0db1940 to your computer and use it in GitHub Desktop.
Save rafaelrmou/ce552b8d7227f0db1940 to your computer and use it in GitHub Desktop.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Android.App;
using Android.Content;
using Android.OS;
using Android.Runtime;
using Android.Views;
using Android.Widget;
namespace IntegracaoOauth.Droid
{
public class FileAcessHelper
{
public static string GetLocalFilePath(string fileName)
{
string path = System.Environment.GetFolderPath(System.Environment.SpecialFolder.Personal);
return System.IO.Path.Combine(path, fileName);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment