主要代码:
/**
* 创建多级文件目录
* @param fileDir
* @return
*/
public static void createFileDirectorys(String fileDir) {
String[] fileDirs=fileDir.split("\\/");
String topPath="";
for (int i = 0; i < fileDirs.length; i++) {
topPath+="/"+fileDirs[i];
File file = new File(topPath);
if (file.exists()) {
continue;
}else {
file.mkdir();
}
}
}
注意:调用创建文件目录之前,记得先申请SD卡访问权限