我遇到了一个问题,我想将视频从一个位置复制/移动到 android 的 sdcard 内的另一个位置。有人知道该怎么做吗?
问问题
83 次
1 回答
0
private String CopyFile(String srcPath,String destPath)
{
String videoFileName = VIDEO_FILE_PREFIX + mCurrentQuestion.getQuestionId() + VIDEO_FILE_SUFFIX ;
File source= new File(srcPath);
File destination= new File(destPath+"/"+videoFileName);
source.renameTo(destination);
return destPath+"/"+videoFileName;
}
于 2012-07-07T09:39:37.963 回答