Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Access the Android Special Folder Path by using Environment

I want to save my logs to a folder which I can access with windows explorer. For example I want to create my log in the following path

This PC\Galaxy A5 (2017)\Phone\Android\data\MyApp\files

So I tried to use Environment variables... I get such as

/data/user/...

But here i cannot see the file what I created (using code I can access the path but I want to see in the explorer).

how I can create a path like above with code?

When I tried this code

var finalPath2 = Android.OS.Environment.GetExternalStoragePublicDirectory
(Android.OS.Environment.DataDirectory.AbsolutePath);

I get the path "/storage/emulated/0/data"

and

If i use the code

   var logDirectory =Path.Combine(System.Environment.GetFolderPath
  (System.Environment.SpecialFolder.ApplicationData),"logs");

I get the following path like:

/data/user/0/MyApp/files/.config/logs

and

var logDirectory =Path.Combine(System.Environment.GetFolderPath
  (System.Environment.SpecialFolder.MyDocuments),"logs");

"/data/user/0/IM.OneApp.Presentation.Android/files/logs"

but unfortunately I cannot access this folder by explorer....

This PC\Galaxy A5 (2017)\Phone\Android\data\MyApp\files

So how to find out this path in c# by using environments?

Update:

when I give the following path hardcoded, it creates the file where I want..

logDirectory = "/storage/emulated/0/Android/data/MyApp/files/logs";

is there any environment to create this path? I can combine 2 environments and do some string processing in order to create this path. But maybe there is an easier way?

like image 803
ertan2002 Avatar asked Jan 10 '19 10:01

ertan2002


2 Answers

You are looking for the root of GetExternalFilesDir, just pass a null:

Example:

var externalAppPathNoSec = GetExternalFilesDir(string.Empty).Path;

Note: This is a Context-based instance method, you can access it via the Android application context, an Activity, etc... (see the link below to the Android Context docs)

  • Shared storage may not always be available, since removable media can be ejected by the user. Media state can be checked using Environment.getExternalStorageState(File).

  • There is no security enforced with these files. For example, any application holding Manifest.permission.WRITE_EXTERNAL_STORAGE can write to these files.

re: https://developer.android.com/reference/android/content/Context#getExternalFilesDir(java.lang.String)

like image 153
SushiHangover Avatar answered Oct 12 '22 04:10

SushiHangover


string docFolder = Path.Combine(System.Environment.GetFolderPath
     (System.Environment.SpecialFolder.MyDocuments), "logs");
string libFolder = Path.Combine(docFolder, "/storage/emulated/0/Android/data/MyApp/files/logs");
if (!Directory.Exists(libFolder))
{
    Directory.CreateDirectory(libFolder);
}

string destinationDatabasePath = Path.Combine(libFolder, "temp.db3");

db.Backup( destinationDatabasePath, "main");
like image 2
Omar Alshobky Avatar answered Oct 12 '22 04:10

Omar Alshobky