好友
阅读权限 10
听众
最后登录 1970-1-1
放假几天
发表于 2022-1-12 16:48
本帖最后由 放假几天 于 2022-1-12 21:09 编辑
代码
/**
* 创建文件
*
* @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;
}
报错
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)
发帖前要善用【论坛搜索 】 功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。