當前位置: 首頁>>代碼示例>>Java>>正文


Java Context.getExternalFilesDirs方法代碼示例

本文整理匯總了Java中android.content.Context.getExternalFilesDirs方法的典型用法代碼示例。如果您正苦於以下問題:Java Context.getExternalFilesDirs方法的具體用法?Java Context.getExternalFilesDirs怎麽用?Java Context.getExternalFilesDirs使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在android.content.Context的用法示例。


在下文中一共展示了Context.getExternalFilesDirs方法的9個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: getExtSdCardDataPaths

import android.content.Context; //導入方法依賴的package包/類
@TargetApi(Build.VERSION_CODES.KITKAT)
private String[] getExtSdCardDataPaths(Context context) {
    List<String> paths = new ArrayList<String>();
    for (File file : context.getExternalFilesDirs("external")) {
        if (file != null) {
            int index = file.getAbsolutePath().lastIndexOf("/Android/data");
            if (index >= 0) {
                String path = file.getAbsolutePath().substring(0, index);
                try {
                    path = new File(path).getCanonicalPath();
                } catch (IOException e) {
                    // Keep non-canonical path.
                }
                paths.add(path);
            }
        }
    }
    if (paths.isEmpty()) paths.add("/storage/sdcard1");
    return paths.toArray(new String[0]);
}
 
開發者ID:GlennioTech,項目名稱:MetadataEditor,代碼行數:21,代碼來源:GStorageItemsLister.java

示例2: getRemovableStorageRoots

import android.content.Context; //導入方法依賴的package包/類
public static File[] getRemovableStorageRoots(Context context) {
    File[] roots = context.getExternalFilesDirs("external");
    ArrayList<File> rootsArrayList = new ArrayList<>();

    for (int i = 0; i < roots.length; i++) {
        if (roots[i] != null) {
            String path = roots[i].getPath();
            int index = path.lastIndexOf("/Android/data/");
            if (index > 0) {
                path = path.substring(0, index);
                if (!path.equals(Environment.getExternalStorageDirectory().getPath())) {
                    rootsArrayList.add(new File(path));
                }
            }
        }
    }

    roots = new File[rootsArrayList.size()];
    rootsArrayList.toArray(roots);
    return roots;
}
 
開發者ID:kollerlukas,項目名稱:Camera-Roll-Android-App,代碼行數:22,代碼來源:StorageUtil.java

示例3: setEnv

import android.content.Context; //導入方法依賴的package包/類
@Override
public void setEnv(final Context p) {
    File[] paths = p.getExternalFilesDirs(null);
    int index = 0;
    for (File path : paths) {
        if (path == null)
            continue;
        if (!path.exists())
            path.mkdirs();
        nativeSetEnv("UNSECURE_STORAGE_DIR_" + index, path.getAbsolutePath());
        index++;
    }
}
 
開發者ID:NeoTerm,項目名稱:NeoTerm,代碼行數:14,代碼來源:Settings.java

示例4: allPaths

import android.content.Context; //導入方法依賴的package包/類
@Override
public String[] allPaths(final Context p) {
    ArrayList<String> ret = new ArrayList<String>();
    for (File path : p.getExternalFilesDirs(null)) {
        if (path == null)
            continue;
        try {
            path.mkdirs();
            new FileOutputStream(new File(path, ".nomedia")).close();
        } catch (Exception e) {
            continue;
        }
        ret.add(path.getAbsolutePath());
    }
    return ret.toArray(new String[0]);
}
 
開發者ID:NeoTerm,項目名稱:NeoTerm,代碼行數:17,代碼來源:Settings.java

示例5: getExternalFilesDirs

import android.content.Context; //導入方法依賴的package包/類
public static File[] getExternalFilesDirs(Context context, String type) {
    final int version = Build.VERSION.SDK_INT;
    if (version >= 19) {
        //返回結果可能存在null值
        return context.getExternalFilesDirs(type);
    } else {
        return new File[] { context.getExternalFilesDir(type) };
    }
}
 
開發者ID:alibaba,項目名稱:atlas,代碼行數:10,代碼來源:Framework.java

示例6: getExternalFilesDirs

import android.content.Context; //導入方法依賴的package包/類
public static File[] getExternalFilesDirs(Context context, String type) {
    if (Build.VERSION.SDK_INT >= 19) {
        return context.getExternalFilesDirs(type);
    } else {
        return new File[]{context.getExternalFilesDir(type)};
    }
}
 
開發者ID:roshakorost,項目名稱:Phial,代碼行數:8,代碼來源:FileProvider.java

示例7: getExternalFilesDirs

import android.content.Context; //導入方法依賴的package包/類
public static File[] getExternalFilesDirs(Context context) {
    File[] files;
    files = context.getExternalFilesDirs(null);
    if (files == null) {
        files = new File[0];
    }
    return files;
}
 
開發者ID:brevent,項目名稱:prevent,代碼行數:9,代碼來源:ExternalFileUtils.java

示例8: getStorageDirs

import android.content.Context; //導入方法依賴的package包/類
/**
 * Procedure retrieves the storage directory
 */
public static String[] getStorageDirs(Context ctx)
{
    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT)
    {
        File[] ff = ctx.getExternalFilesDirs(null);
        if (ff == null)
            return null;
        String[] res = new String[ff.length];
        for (int i = 0; i < ff.length; i++)
        {
            if (ff[i] == null)
                continue;
            String path = ff[i].getAbsolutePath();
            if (path == null)
                continue;
            int pos = path.indexOf("Android");
            if (pos < 0)
            {
                continue;
            }
            res[i] = path.substring(0, pos);
        }
        return res;
    }
    else
    {
        return null;
    }
}
 
開發者ID:mkulesh,項目名稱:microMathematics,代碼行數:33,代碼來源:CompatUtils.java

示例9: getExternalFilesDirs

import android.content.Context; //導入方法依賴的package包/類
public static File[] getExternalFilesDirs(Context context, String type) {
    return context.getExternalFilesDirs(type);
}
 
開發者ID:JackChan1999,項目名稱:boohee_v5.6,代碼行數:4,代碼來源:ContextCompatKitKat.java


注:本文中的android.content.Context.getExternalFilesDirs方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。