XCOPY /v 开关在 Batch 中有什么作用?
What does the XCOPY /v switch do in Batch?
XCOPY 微软documentation声明
/v Verifies each new file.
校验是md5校验还是文件内容与原件匹配?
这是 xcopy /?
在我的屏幕上输出的内容 (Win7 x64):
/V Verifies the size of each new file.
所以,显然它会检查文件大小。
/v Verifies each file as it is written to the destination file to make sure that the destination files are identical to the source files.
它没有提到校验和或文件的内容;它只是确保目标文件的大小与源文件的大小相同。
您链接的文档显然已经过时,因为它讨论了 xcopy、xcopy32 和 Windows ME。
XCOPY 微软documentation声明
/v Verifies each new file.
校验是md5校验还是文件内容与原件匹配?
这是 xcopy /?
在我的屏幕上输出的内容 (Win7 x64):
/V Verifies the size of each new file.
所以,显然它会检查文件大小。
/v Verifies each file as it is written to the destination file to make sure that the destination files are identical to the source files.
它没有提到校验和或文件的内容;它只是确保目标文件的大小与源文件的大小相同。
您链接的文档显然已经过时,因为它讨论了 xcopy、xcopy32 和 Windows ME。