web-dev-qa-db-ja.com

MS powershellにrsyncに相当するものはありますか?

Rsyncは非常に便利です。ディレクトリ内のすべてのファイルをコピーする必要はありません。新しいファイルのみを更新します。

私はcygwinでそれを使用しますが、この質問の主な焦点ではないいくつかの矛盾があると思います。

同等のものはありますか?

15
kirill_igum

完全に同等ではなく、Powershell機能でもありませんが、 robocopy を使用すると、rsyncが使用される機能のいくつかを実行できます。

参照 https://serverfault.com/q/129098

13
RedGrittyBrick

これは、ディレクトリを同期するために機能します。関数「rsync」を呼び出します。 robocopyで権限の問題がありました。これにはそれらの問題はありません。

function rsync ($source,$target) {

  $sourceFiles = Get-ChildItem -Path $source -Recurse
  $targetFiles = Get-ChildItem -Path $target -Recurse

  if ($debug -eq $true) {
    Write-Output "Source=$source, Target=$target"
    Write-Output "sourcefiles = $sourceFiles TargetFiles = $targetFiles"
  }
  <#
  1=way sync, 2=2 way sync.
  #>
  $syncMode = 1

  if ($sourceFiles -eq $null -or $targetFiles -eq $null) {
    Write-Host "Empty Directory encountered. Skipping file Copy."
  } else
  {
    $diff = Compare-Object -ReferenceObject $sourceFiles -DifferenceObject $targetFiles

    foreach ($f in $diff) {
      if ($f.SideIndicator -eq "<=") {
        $fullSourceObject = $f.InputObject.FullName
        $fullTargetObject = $f.InputObject.FullName.Replace($source,$target)

        Write-Host "Attempt to copy the following: " $fullSourceObject
        Copy-Item -Path $fullSourceObject -Destination $fullTargetObject
      }


      if ($f.SideIndicator -eq "=>" -and $syncMode -eq 2) {
        $fullSourceObject = $f.InputObject.FullName
        $fullTargetObject = $f.InputObject.FullName.Replace($target,$source)

        Write-Host "Attempt to copy the following: " $fullSourceObject
        Copy-Item -Path $fullSourceObject -Destination $fullTargetObject
      }

    }
  }
}

1
Ken Germann