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卡中移动文件所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)