Android 获取应用程序的“主页”数据目录
一个简单的问题,与应用程序写入内存时的默认“主”目录有关。默认情况下,操作系统 (2.2) 将创建的任何文件放置在:
/data/data/your.package/files
读取文件时,使用相同的默认值,通过 openFileInput()
、openFileOutput() 保持正确的上下文时
。但是,如果我需要检查文件是否存在,例如使用 File 类,我需要在构造函数中指定整个路径。
我看到有 Environment.getDataDirectory()
(返回 /data
)、 Environment.getRootDirectory()
(返回 /system) 等,但与获取应用程序的“主”目录无关。
这不是什么大问题,但如果有某种方法可以引用,我宁愿不将完整路径硬编码到我的应用程序中以供使用(例如包名称更改,例如未来操作系统版本中的路径更改)以编程方式访问应用程序的“主”目录。
A simple question, relating to the default 'home' directory when an app writes to the internal memory. By default, any files created are placed by the OS (2.2) in:
/data/data/your.package/files
When reading in files, the same default is used, when keeping in proper context via openFileInput()
, openFileOutput()
. But if I need to check file existence, for instance, using the File class, I need to specify the whole path in the constructor.
I see there are Environment.getDataDirectory()
(returns /data
), Environment.getRootDirectory()
(returns /system
), etc, but nothing related to getting the app's 'home' directory.
It's not a huge deal, but I'd rather not hard-code the full path into my App for File to use (say the package name changes, say the path changes in a future OS release) if there is some way to reference the app's 'home' directory programmatically.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
当然,永远不会失败。在发布上述问题后大约一分钟找到了解决方案...对于那些可能有相同问题的人的解决方案:
找到 此处。
Of course, never fails. Found the solution about a minute after posting the above question... solution for those that may have had the same issue:
Found here.
您可以尝试 Context.getApplicationInfo().dataDir
如果您想要包的持久数据文件夹。
getFilesDir()
返回此目录的子根。You can try
Context.getApplicationInfo().dataDir
if you want the package's persistent data folder.
getFilesDir()
returns a subroot of this.获取应用程序包中文件的路径;
To get the path of file in application package;