Android - 在 data/data/pkg/files 目录中创建文件夹
引用这个问题:
如何创建文件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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
getContext().getDir() 方法是你的朋友
getContext().getDir() method is your friend