Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
//License from project: Open Source License 

import java.io.File;

import android.content.Context;
import android.content.ContextWrapper;

import android.os.Environment;

public class Main {
    public static File getDataDirectory(Context ctx) {
        File f;

        if (Environment.getExternalStorageState().equals("mounted")) {
            //Has SD Card mounted
            f = Environment.getExternalStorageDirectory();
        } else {
            ContextWrapper c = new ContextWrapper(ctx);

            f = c.getFilesDir();
        }

        return f;
    }
}