我正在尝试检查一个目录是否存在,以及它是否用另一个目录中的更新文件替换了该目录中的所有文件。
$path = "C:\mypath\config"
if([System.IO.Directory]::Exists($path)){
$files = Get-ChildItem -Path $path | Select-Object "Name"
ForEach ($File in $files)
{
Copy-Item -Path "C:\tmp\$File" -Destination "$path\$File.txt"
}
}
我不断收到 Copy-Item 命令的错误,因为 $File 返回 @{Name=filename} 而不仅仅是文件名。我尝试过使用 $File.name、$File.basename 等,但这些似乎都不起作用。如何让 Powershell 不将文件名包装在“@{Name=}”中?