Android系统文件,<资源>和<资产>尤其资产>资源>
我正在尝试编写一段代码,让我以编程方式将文件从资源文件夹之一切换到资产文件夹。我尝试过通常的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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.