使用Java或DOS移动命令移动文件夹

时间:2015-06-05 12:34:41

标签: java performance file directory dos

哪种表现更有效?

使用Java:

mkdir destDirPath
move srcDirPath/* destDirPath

或DOS移动命令:

func getNextQuestion() -> (Int) -> QuizQuestion!
{
    func incrementor(var index:Int) -> QuizQuestion! {
        if index < questions.count && index >= 0 {
            return questions[index]
        }
        else {
            return nil
        }
    }
    return incrementor
}
  • 注意 - 此代码将始终在Windows上运行。文件夹大小很大(大约500GB)并移动到远程系统。

通过我的测试,我发现DOS命令明显更快,但我想确认该评估是否总是正确,为什么会这样?任何其他考虑/参数可能会影响它吗?

0 个答案:

没有答案