关于android data/data/包名 目录

data/data/包名目录是Android应用的私有存储空间,外部无法访问,卸载时会被删除。该目录用于存放应用内部文件,通过Context API进行读写操作。在files目录下可以创建私有文件,但不能直接修改文件权限,且只能创建文件而非目录。常用API如openFileOutput()用于写入,openFileInput()用于读取。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

关于data/data/包名 目录

1.关于此目录

此目录是app的私有目录,本身可以访问,外部程序没有访问权限,一些不想让用户看到的文件可以往这里边扔;此目录在程序卸载后将被删除;对应设置中的“数据”一项,如果清空数据,这个目录将会被清空。app自身对此目录的读写不需要额外的权限,because this path is internal storage;

2.目录的操作

Context 提供了一些API方便我们操作此目录

1. getFilesDir();
此函数返回的路径:/data/data/xxx包名/files
Returns the absolute path to the directory on the filesystem where files created with openFileOutput(String, int) are stored.

在这个目录下创建文件有函数:
1.1.public FileOutputStream openFileOutput(String name, int mode)
Open a private file associated with this Context’s application package for writing. Creates the file if it doesn’t already exist.
值得一提的是其中第二个参数 mode,自从api17之后,MODE_WORLD_WRITEABLEMODE_WORLD_READABLE出于安全性考虑被废了,所以改变此目录下文件的权限用这种方法是不行了;
注意,此函数只能在files目录下创建文件,而不能创建目录,name参数不能含有path separators

相对应的读取方法:
1.2.public FileInputStream openFileInput(String name)
1.1和1.2这两个函数都是操作/data/data/xxx包名/files目录下的文件,其中参数@param name The name of the file to open; can not contain path separators.
相应源码:

if (name.indexOf(File.separatorChar) < 0) {
    return new File(base, name);
}
throw new IllegalArgumentException("File " + name + " contains a path separator");

2. public File getDir(String name, int mode);
此函数返回/data/data/xxx包名/目录下名为app_name名称的文件夹的路径,如果不存在,则创建,其种name就是函数的第一个参数;mode的说明同上。

name = "app_" + name;
File file = makeFilename(getDataDirFile(), name);

一些常见函数的说明:
1. 关于函数public boolean isDirectory();
如果file不存在,则返回值是false,所以先调动函数public boolean exists(),判断是否存在,之后调用isDirectory();才有意义;
2. public boolean mkdirs();
函数说明:
Creates the directory named by this file, creating missing parent directories if necessary. Use mkdir() if you don't want to create missing parents.
如果父路径不存在,可以创建;应该注意这个函数创建的是 路径,而不是文件,即使你最后file.xxx,也只会创建file.xxx的文件夹

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值