完全卡在将文件从资产文件夹传输到 SD 卡上
我正在使用以下参考将文件从资产文件夹传输到 SD 卡 如何将文件从“assets”文件夹复制到SD卡? 这种方法的问题在于,它仅将位于根(即资产)文件夹中的文件传输到 SD 卡文件夹中。我也尝试过其他选择,但我完全陷入困境。
我的文件夹结构是
我想复制整个默认文件夹并将其复制到 /sdcard/myapp/themes /默认
I am using following reference to transfer files from assets folder to sd card
How to copy files from 'assets' folder to sdcard?
The problem with this approach is that it is transferring the file located at root i.e. assets folder only and onto sdcard folder only. I have tried other options also but i am completely stuck.
My folder structure is
I want to copy the whole default folder and copy it to /sdcard/myapp/themes/default
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
实现此目的的最佳方法是创建资源的 zip 文件。例如本例中的主题(在资产下),然后将其解压缩到 SD 卡中。您可以参考以下网址:使用android解压文件
The best way to accomplish this is to create zip file of the resources for. e.g. themes in this case(under assets) and then unzip it into sdcard. You can refer following url:unzipping files with android