我是 Android 编程新手,我想删除 sd 卡上的文件。这是我当前(工作)的代码......
File appvc = new File(Environment.getExternalStorageDirectory()
.getAbsolutePath(), "ApplifierVideoCache");
if (appvc.isDirectory()) {
String[] children = appvc.list();
for (int i = 0; i < children.length; i++) {
new File(appvc, children[i]).delete();
}
}
现在我想删除多个文件,但不想用那个大块提到每个文件。我可以将所有文件合并到一个变量中吗?谢谢 ;)