public static void copyFileOrDir(Context c, String path) {
AssetManager assetManager = c.getAssets();
String assets[] = null;
try {
assets = assetManager.list(path);
if (assets.length == 0) {
copyFile(c, path);
} else {
String fullPath = AppRunnerSettings.getBaseDir() + path;
File dir = new File(fullPath);
if (!dir.exists()) {
dir.mkdir();
}
for (String asset : assets) {
copyFileOrDir(c, path + "/" + asset);
}
}
} catch (IOException ex) {
Log.e(TAG, ex.toString());
}
}
FileIO.java 文件源码
java
阅读 46
收藏 0
点赞 0
评论 0
项目:phonk
作者:
评论列表
文章目录