Android系统文件,<资源>和<资产>尤其

发布于 2024-10-12 23:43:48 字数 132 浏览 4 评论 0原文

我正在尝试编写一段代码,让我以编程方式将文件从资源文件夹之一切换到资产文件夹。我尝试过通常的 file.renameTo 方法,该方法过去对我来说非常有效......但对于 android 来说它似乎没有任何作用......

I am trying to write a code that lets me programmatically switch a file from one of my resources folders to my assets folder. I have tried the usual file.renameTo method that has worked so very well for me in the past....but with android it seems to do nothing...

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

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

发布评论

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

评论(1

猥︴琐丶欲为 2024-10-19 23:43:48

asset 和 res 文件夹是 .apk 文件结构的一部分。这不是手机上的应用程序可以更改的内容。您可以在手机的文件系统中创建文件夹结构,但需要通过文件访问 api 从您的应用程序访问该文件夹结构,而不是作为资产或资源标识符。

The assets and res folders are part of the structure of the .apk file. This isn't something that can be changed by the application on the phone. You can create a folder structure in the phone's file system, but that will need to be accessed from your app by the file access api, not as assets or resource identifiers.

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