Rsyncは非常に便利です。ディレクトリ内のすべてのファイルをコピーする必要はありません。新しいファイルのみを更新します。
私はcygwinでそれを使用しますが、この質問の主な焦点ではないいくつかの矛盾があると思います。
同等のものはありますか?
Rsyncは非常に便利です。ディレクトリ内のすべてのファイルをコピーする必要はありません。新しいファイルのみを更新します。
私はcygwinでそれを使用しますが、この質問の主な焦点ではないいくつかの矛盾があると思います。
同等のものはありますか?
回答:
完全に同等ではなく、Powershellの機能でもありませんが、robocopyはrsyncの使用目的の一部を実行できます。
これは、ディレクトリを同期するために機能します。関数「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
}
}
}
}