Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
import android.content.Context;

import java.io.*;

public class Main {
    public static File getCacheDir(Context c) {
        File cacheDir = c.getExternalCacheDir();

        if (null == cacheDir)
            cacheDir = c.getCacheDir();

        if (!cacheDir.exists())
            cacheDir.mkdirs();

        return cacheDir;
    }
}