我编写了一个简短的脚本,用于比较服务器之间的文件差异,然后提示是否镜像更改。如果没有任何更改,我希望它能够智能地不提示复制。
剧本:
robocopy "$cSource" "$cDestination" /E /L /FP
$cDecision = Read-host "Continue = 1, anything else = Stop"
if ($cDecision -eq "1") {
robocopy "$cSource" "$cDestination" /MIR /FFT /Z /W:5 /MT:64 /XX /log:$cLogLocation
Invoke-item $cLogLocation
}
else { Write-host "Quit!" }
如果 Robocopy 报告 Mismatch、Failed、Extras 和 Copied 为 0,我希望 Powershell 不会要求继续。这对于这个特定项目来说不是很重要,但我能想到这种检查的几个有用用途。谢谢!
答案1
最后,有人在 10 秒内没有回答!我利用您的问题继续了解有关 Powershell 的更多信息。以下方法对我有用,我希望看到其他人如何精简此代码:
Clear-Host
$ErrorActionPreference = "Continue"
$DebugPreference = "Continue"
$VerbosePreference = "Continue"
@"
## robocopy_helper.ps1 ########################################################
Usage: powershell -ExecutionPolicy Bypass -File ./robocopy_helper.ps1
Purpose: Dry run before Full run of robocopy
History: 07/11/2014 - Created
###############################################################################
"@
## User Supplied Variables
$cSrc = "C:\Temp"
$cDst = "C:\Temp2"
$cLog = "c:\robo.log"
## Robocopy Dry Run
$robo_test = robocopy "$cSrc" "$cDst" /E /L /FP
## Use Regular Expression to grab the following Table
# Total Copied Skipped Mismatch FAILED Extras
# Dirs : 1 0 1 0 0 0
# Files : 1 0 1 0 0 0
$robo_results = $robo_test -match '^(?= *?\b(Total|Dirs|Files)\b)((?! Files).)*$'
## Convert Table above into an array
$robo_arr = @()
foreach ($line in $robo_results){
$robo_arr += $line
}
## Create Powershell object to tally Robocopy results
$row = "" |select COPIED, MISMATCH, FAILED, EXTRAS
$row.COPIED = [int](($robo_arr[1] -split "\s+")[4]) + [int](($robo_arr[2] -split "\s+")[4])
$row.MISMATCH = [int](($robo_arr[1] -split "\s+")[6]) + [int](($robo_arr[2] -split "\s+")[6])
$row.FAILED = [int](($robo_arr[1] -split "\s+")[7]) + [int](($robo_arr[2] -split "\s+")[7])
$row.EXTRAS = [int](($robo_arr[1] -split "\s+")[8]) + [int](($robo_arr[2] -split "\s+")[8])
## If there are differences, lets kick off robocopy again
if ( ($row.COPIED + $row.MISMATCH + $row.FAILED + $row.EXTRAS) -gt 0 ){
robocopy "$cSrc" "$cDst" /MIR /FFT /Z /W:5 /MT:64 /XX /log:$cLog
Invoke-item $cLog
}
else { Write-host "Folders '$cSrc' and '$cDst' are twins" }
注意:我已将上面的正则表达式从句点改为星号前的空格。这样就消除了在文件名/路径中捕获“文件”或“目录”或“总数”的风险。原始行如下,以供后人参考。jski
2014/07/16
$robo_results = $robo_test-match'^(?=.?\b(总计|目录|文件)\b)((?!文件)。)$'
答案2
我意识到这是一个较旧的线程,但请注意,这也可以使用 robocopy 返回的退出代码来确定是否存在任何更改(值为 0 表示没有更改)。 有两种方法可以做到这一点:
- 运行上面的 robocopy 语句,然后在下一行检查 $LastExitCode 的值。
- 使用启动进程:
$RobocopyResult = 启动进程-文件路径 robocopy-参数列表 $RobocopyParams-等待-PassThru $RobocopyResult.退出代码
如果使用 Start-Process,则务必使用 -PassThru,否则 $RobocopyResult 中将不会设置任何值。
答案3
以下是我的破解方法。我的代码读取日志文件并查找与摘要字段匹配的行。然后将其解析为两个对象,其中包含文件和目录的统计信息:
### Read data from log summary at end of RoboCopy log
$Props = ((cat $RoboCopyLogFile | ? {$_ -like "*Total*Copied*Skipped*Mismatch*FAILED*Extras*"}) | select -Last 1).split(" ") | ? {$_ -match "a|b|c|d|e|f|g|h|i|j|k|l|m|n|o|p|q|r|s|t|u|v|w|x|y|z"}
$Dirs = (((cat $RoboCopyLogFile | ? {$_ -like "*Dirs : *"})) | select -Last 1).split(" ") | ? {$_ -match "1|2|3|4|5|6|7|8|9|0"}
$Files = (((cat $RoboCopyLogFile | ? {$_ -like "*Files : *"})) | select -Last 1).split(" ") | ? {$_ -match "1|2|3|4|5|6|7|8|9|0"}
### Loop through the propteries of the summary
$i = 0
$FileStats = @{}
$DirStats = @{}
foreach($Prop in $Props)
{
$FileStats.("$Prop") = $Files[$i]
$DirStats.("$Prop") = $Dirs[$i]
$i++
}
$FileStats = New-Object -TypeName psobject -Property $FileStats
$DirStats = New-Object -TypeName psobject -Property $DirStats