Android - 在 data/data/pkg/files 目录中创建文件夹

发布于 2024-10-27 23:42:13 字数 420 浏览 0 评论 0原文

引用这个问题:

如何创建文件Android '/data/data/pkg/files' 目录中的层次结构?

使用内置标准 Java 库有什么样的解决方案来解决此问题,如何导航到 data/data/pkg 目录以及在那里创建文件夹和文件?也许在可能的情况下使用一些 Android 调用?

当用户使用我的应用程序时,我希望将与该用户关联的所有文件保存在文件夹 pkg/files/username 中,以便我以后可以轻松读取这些文件夹。我的另一个选择是在文件名中包含用户名,但在我看来这不是一个非常合适和干净的方法。

Referencing this question:

How to create files hierarchy in Androids '/data/data/pkg/files' directory?

What kind of a solution is there to this problem using the built in standard Java libraries, how do I navigate to the data/data/pkg directory and create folders and files in there? Maybe using some of the Android calls where possible?

When a user uses my app I wish to save any files associated with that user in a folder pkg/files/username, so that I can easily read these folders later. My other option is include the username in the filename but this isn't a very suitable and clean method in my opinion.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

本王不退位尔等都是臣 2024-11-03 23:42:13

getContext().getDir() 方法是你的朋友

File dir = ctx.getDir("my_sub_dir", Context.MODE_PRIVATE);
File newfile = new File(topDirFile.getAbsolutePath() + File.separator + "new_file_name");
newfile.createNewFile();
BufferedOutputStream fout = new BufferedOutputStream(new FileOutputStream(newfile), 16 * 1024);

getContext().getDir() method is your friend

File dir = ctx.getDir("my_sub_dir", Context.MODE_PRIVATE);
File newfile = new File(topDirFile.getAbsolutePath() + File.separator + "new_file_name");
newfile.createNewFile();
BufferedOutputStream fout = new BufferedOutputStream(new FileOutputStream(newfile), 16 * 1024);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文