美文网首页
android 10 文件夹和文件创建

android 10 文件夹和文件创建

作者: WangRain1 | 来源:发表于2021-12-21 13:27 被阅读0次

    Android 10 改变了文件的存储方式不允许应用随意创建文件夹了,要用安卓提供的文件夹,提供的文件夹如下

    public static void createPath(String path) {

    File file =new File(path);

        if (!file.exists()) {

    try {

    // 获取父文件

                File parent = file.getParentFile();

                if( !parent.exists() ) {

    parent.mkdirs();  //创建所有父文件夹

                }

    file.createNewFile();

            }catch (IOException e) {

    e.printStackTrace();

            }

    }

    }

    相关文章

      网友评论

          本文标题:android 10 文件夹和文件创建

          本文链接:https://www.haomeiwen.com/subject/mblxqrtx.html