Hello,
I bind a jar library that writes files to this path
/data/data/Xamarin.AndroidTestApp/cache/NativePath/NativeFile_1387467003822-95976.dat
How do I get access to the corresponding path in my managed code?
I use the below with no success.
List<string> filesToSend;
using (IsolatedStorageFile store = IsolatedStorageFile.GetUserStoreForApplication())
{
filesToSend = new List<string>(store.GetFileNames(".\\cache\\NativePath\\*.dat"));
}
Thank you.