翰林优商.apk(点击下载) / b.java


package com.sjm.sjmsdk.core;

import android.content.Context;
import android.os.Environment;
import java.io.File;

public class b {
    public static String a(Context context) {
        String absolutePath = (a() ? Environment.getExternalStorageDirectory() : context.getFilesDir()).getAbsolutePath();
        File file = new File(absolutePath);
        if (!file.exists()) {
            file.mkdirs();
        }
        return absolutePath;
    }

    private static boolean a() {
        return Environment.getExternalStorageState().equals("mounted");
    }

    public static String b(Context context) {
        String str = a(context) + "/Download";
        File file = new File(str);
        if (!file.exists()) {
            file.mkdir();
        }
        return str;
    }
}