安卓开发中在手机或平板内存中创建文件夹

1. // 创建cloud文件夹
        publicFilePath = new StringBuilder(Environment.getExternalStorageDirectory()
                .getAbsolutePath())
                .append(File.separator).append("cloud").append(File.separator).append(sdf
                        .format(new Date()))
                .toString();
        FileUtil.mkDir(publicFilePath);

2./**
     * 递归创建文件夹
     * 
     * @param dirPath
     */
    public static void mkDir(String dirPath) {
        String[] dirArray = dirPath.split("/");
        String pathTemp = "";
        for (int i = 1; i < dirArray.length; i++) {
            pathTemp = pathTemp + "/" + dirArray[i];
            File newF = new File(dirArray[0] + pathTemp);
            if (!newF.exists()) {
                newF.mkdir();
            }
        }
    }

 

你可能感兴趣的:(android,android-studio,计算机)