当前位置: 首页>>代码示例>>Java>>正文


Java Context.fileList方法代码示例

本文整理汇总了Java中android.content.Context.fileList方法的典型用法代码示例。如果您正苦于以下问题:Java Context.fileList方法的具体用法?Java Context.fileList怎么用?Java Context.fileList使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在android.content.Context的用法示例。


在下文中一共展示了Context.fileList方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: DeleteOrphansNotInList

import android.content.Context; //导入方法依赖的package包/类
public static void DeleteOrphansNotInList(PictureDestination pd, ArrayList<String> alImages, Context c) {
    MFBImageInfo mfbii = new MFBImageInfo(pd);
    String szPrefix = mfbii.getImagePrefix();
    String szSuffix = mfbii.getImageSuffix();

    Log.w(MFBConstants.LOG_TAG, String.format("Delete orphans for %s", pd.toString()));
    // Get a list of all the files
    String[] rgszFiles = c.fileList();

    // Now delete any images that match the prefix but which aren't in our list.
    for (String szFile : rgszFiles)
        if (szFile.startsWith(szPrefix) && szFile.endsWith(szSuffix) && !alImages.contains(szFile)) {
            Log.e(MFBConstants.LOG_TAG, "ORPHAN FOUND TO DELETE: " + szFile);
            c.deleteFile(szFile);
        }
}
 
开发者ID:ericberman,项目名称:MyFlightbookAndroid,代码行数:17,代码来源:MFBImageInfo.java

示例2: deleteAllApiFileCache

import android.content.Context; //导入方法依赖的package包/类
public static void deleteAllApiFileCache(Context context) {
    if (context != null) {
        String[] fileNames = context.fileList();
        if (!BaseTypeUtils.isArrayEmpty(fileNames)) {
            synchronized (fileNames) {
                for (String cacheName : fileNames) {
                    context.deleteFile(cacheName);
                }
            }
        }
    }
}
 
开发者ID:JackChan1999,项目名称:letv,代码行数:13,代码来源:FileUtils.java

示例3: getAllIcons

import android.content.Context; //导入方法依赖的package包/类
public static List<File> getAllIcons(Context context) {
    List<File> files = new ArrayList<>();
    for (String fn: context.fileList()) {
        if (fn.endsWith(".png")) {
            Log.d("SpecialIconStore", " I see file " + fn);
            files.add(new File(context.getFilesDir(), fn));
        }
    }
    return files;
}
 
开发者ID:quaap,项目名称:LaunchTime,代码行数:11,代码来源:SpecialIconStore.java


注:本文中的android.content.Context.fileList方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。