将文件从 SD 卡的一个文件夹复制到 SD 卡的另一个文件夹
是否可以以编程方式将 sdcard 中存在的文件夹复制到同一 sdcard 中存在的另一个文件夹?
如果是这样,该怎么做?
Is it possible to copy a folder present in sdcard to another folder present the same sdcard programmatically ??
If so, how to do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
该示例的改进版本:
如果传递的目标文件位于不存在的目录中,则获得更好的错误处理和更好的处理。
An improved version of that example:
Got some better error handling and better handles if the passed target file lies in a directory that does not exist.
是的,这是可能的,我在我的代码中使用以下方法。希望对您有用:-
yes it is possible and im using below method in my code . Hope use full to you:-
要移动文件或目录,可以使用 File.renameTo(String path) 函数
To move files or directories, you can use
File.renameTo(String path)
function科特林代码
Kotlin code