我需要将一个文件夹的文件移动到另一个文件夹
要在 java 中做到这一点,我会创建一个类似的方法:
private boolean moveFile(List<String> names, dir moveTo){
for(String file : names){
//copy the file from one dir to another
}
}
在 scala 中是否有更“实用”的方式或更好的方式来做到这一点?也许使用 scala 我什至不需要遍历文件?
我需要将一个文件夹的文件移动到另一个文件夹
要在 java 中做到这一点,我会创建一个类似的方法:
private boolean moveFile(List<String> names, dir moveTo){
for(String file : names){
//copy the file from one dir to another
}
}
在 scala 中是否有更“实用”的方式或更好的方式来做到这一点?也许使用 scala 我什至不需要遍历文件?