Function Move {
#Moves all files older than 31 days old from the Source folder to the Target
Get-Childitem -Path "E:\source" | Where-Object { $_.LastWriteTime -lt (get-date).AddDays(-31)} |
ForEach {
Move-Item $_.FullName -destination "F:\target" -force -ErrorAction:SilentlyContinue
}
}
ソースディレクトリには2〜3年以上古いファイルがありますが、スクリプトを実行すると、ターゲットディレクトリに何も移動しません。どうしましたか ?
これが違いをもたらすかどうかはわかりませんが、$ではありません。 $ _である必要があります。
私はこのスクリプトを試してみましたが、うまくいきました。
get-childitem -Path "E:\source" |
where-object {$_.LastWriteTime -lt (get-date).AddDays(-31)} |
move-item -destination "F:\target"
オブジェクトはmove-itemコマンドに「パイプ」されるため、foreachループは必要ありません。
また、隠しファイルにも注意してください。-Force
からGet-ChildItem