gpt4 book ai didi

Powershell Copy-Item 不复制

转载 作者:行者123 更新时间:2023-12-02 23:24:41 29 4
gpt4 key购买 nike

我必须遵循以下目录结构:

fold1
- file1
- file2

fold2
- file1

我正在尝试测试文件夹是否相同,如果不相同,则将 fold1 复制到 fold2 并覆盖任何不同的文件。这是我尝试过的:

$fold1 = Get-ChildItem -Recurse -path C:\fold1
$fold2 = Get-ChildItem -Recurse -path C:\fold2
$isDif = Compare-Object $fold1 $fold2
if ($isDif -eq $null) {
Write-Host "Folders Are Identical"
}
else {
Write-Host "Folders Are Different"
Copy-Item -Path $fold1.FullName -Destination $fold2.FullName -Recurse -Force
}

但是当我运行它时,它说文件夹不同,但它没有复制任何东西。没有错误或任何东西,它只是不起作用。

最佳答案

我最终改用了 robocopy:

robocopy c:\fold1 c:\fold2 /s

关于Powershell Copy-Item 不复制,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40343418/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com