android – 在SD卡中移动文件

android – 在SD卡中移动文件,第1张

概述我一直试图在SD卡中移动文件,但无济于事:这是代码: try { File sd=Environment.getExternalStorageDirectory(); // File (or directory) to be moved String sourcePath="mnt/sdcard/.Images/"+image 我一直试图在SD卡中移动文件,但无济于事:这是代码:

try {            file sd=Environment.getExternalStorageDirectory();            // file (or directory) to be moved            String sourcePath="mnt/sdcard/.Images/"+imageTitle;            file file = new file(sd,sourcePath);            // Destination directory            String destinationPath="mnt/sdcard/"+imageTitle;            file dir = new file(sd,destinationPath);            // Move file to new directory            boolean success = file.renameTo(new file(dir,file.getname()));            if (!success) {                handler.post(new Runnable(){                    @OverrIDe                    public voID run() {                        Toast.makeText(getApplicationContext(),"file moved",Toast.LENGTH_LONG).show();                    }                });            }        }         catch (Exception e) {        }

我不知道wasup.Will欣赏帮助.

解决方法 第一:如果您已获得外部目录,则无需将其添加到源路径和目标路径的开头

其次,destinationPath似乎没必要,因为它看起来只是想将它移动到sdcard的根文件夹.

它应该是

file sd=Environment.getExternalStorageDirectory();// file (or directory) to be movedString sourcePath="/.Images/"+imageTitle;file file = new file(sd,sourcePath);// Destination directoryboolean success = file.renameTo(new file(sd,imageTitle));
总结

以上是内存溢出为你收集整理的android – 在SD卡中移动文件全部内容,希望文章能够帮你解决android – 在SD卡中移动文件所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1122855.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-29
下一篇 2022-05-29

发表评论

登录后才能评论

评论列表(0条)

保存