Android 获取应用程序的“主页”数据目录

发布于 2024-10-12 20:07:39 字数 545 浏览 2 评论 0原文

一个简单的问题,与应用程序写入内存时的默认“主”目录有关。默认情况下,操作系统 (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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

怂人 2024-10-19 20:07:40

当然,永远不会失败。在发布上述问题后大约一分钟找到了解决方案...对于那些可能有相同问题的人的解决方案:

ContextWrapper.getFilesDir()

找到 此处

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:

ContextWrapper.getFilesDir()

Found here.

野稚 2024-10-19 20:07:40

您可以尝试 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.

蓝天 2024-10-19 20:07:40

获取应用程序包中文件的路径;

ContextWrapper c = new ContextWrapper(this);
Toast.makeText(this, c.getFilesDir().getPath(), Toast.LENGTH_LONG).show();

To get the path of file in application package;

ContextWrapper c = new ContextWrapper(this);
Toast.makeText(this, c.getFilesDir().getPath(), Toast.LENGTH_LONG).show();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文