关于这两个类与这些特定方法(FileIO.FileSystem.CopyFile()和System.IO.File.Copy())之间的区别,我有几个问题
在最简单的级别上,当将sourceFile,destinationFile和bool设置为true以覆盖时,它们都将执行相同的操作。例如
FileIO.FileSystem.CopyFile(source, destination, True)
System.IO.File.Copy(source, destination, True)
我的两个问题是
最佳答案
经过一些检查的VisualBasic版本调用了System.IO.File.Copy,我发现通过使用dotPeek可以发现dotPeek是.NET反编译器。