吾爱破解 - 52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 692|回复: 0
收起左侧

[求助] 安卓在共享空间中创建文件

[复制链接]
放假几天 发表于 2022-1-12 16:45
代码
/**
     * 创建文件
     *
     * @Param name
     * @return
     */
    public String fileCj(String name) {
//        获取外部存储路径
//        String path = Environment.getDownloadCacheDirectory().getAbsolutePath()+"/"+name;
//        Log.e("路径",Environment.getExternalStorageDirectory()+"");
//        Log.e("",Environment.getExternalStorageState().equals("mounted")+"");//查看外部存储是否存在


//        String path = context.getExternalFilesDir(null)+ "//" + name;

        File createFiles = new File(name);

        try {
            if (!createFiles.exists()) {
                createFiles.createNewFile();
            }
        } catch (IOException e) {
            Log.d("文件创建失败", "files err:" + e.getMessage());
        }

        return name;
    }

报错

D/文件创建失败: files err:Operation not permitted
D/文件创建失败: files err:Operation not permitted
D/文件创建失败: files err:Operation not permitted
D/文件创建失败: files err:Operation not permitted
D/文件创建失败: files err:Operation not permitted
D/文件创建失败: files err:Operation not permitted
W/System.err: java.io.FileNotFoundException: /storage/emulated/0/Documents/gnss/2022-01-12-03:45:55/GNSS/location.txt: open failed: EPERM (Operation not permitted)
      

发帖前要善用论坛搜索功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。

您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则

返回列表

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2024-11-25 17:44

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表