正如标题所说,以下哪种情况更快?
// Using FileInfo
FileInfo file = new FileInfo(@"C:\Test.txt");
if (file.Exists)
file.CopyTo(@"C:\TestCopy.txt");
// Using File
if (File.Exists(@"C:\Test.txt"))
File.Copy(@"C:\Test.txt", @"C:\TestCopy.txt");
我知道 FileInfo 更容易让眼睛阅读,但是一种方法比另一种方法快吗?