我正在尝试将一个文件夹与每个子文件夹和文件复制到另一个目录。现在我要做的是在特定方案之后重命名复制的文件夹。
例如,该文件夹用于“火车”类别,我想在名称中添加“B_”。
我现在拥有的是:
$PathFolder = $FileBrowser.SelectedPath
# $PathFolder2 = "B_" + $FileBrowser.SelectedPath
$PathDestination = "C:\Users\*\Desktop\"
$charCount = ($PathFolder.ToCharArray() | Where-Object {$_ -eq '\'} | Measure-Object).Count
$FolderName = $PathFolder.split('\')[$charCount]
if ($CB_Bahnlinien.Checked) {
$x = Copy-Item -Path $PathFolder -Destination $PathDestination -Recurse -Force -PassThru | Rename-Item -NewName "B_$FolderName" -Verbose
# $x = Rename-Item -Path "$PathFolder" -NewName "B_$FolderName" -PassThru | Copy-Item -Path $PathFolder2 -Destination $PathDestination -Recurse
if($x) {
$error_msg = $error[0].exception.message
[System.Windows.Forms.MessageBox]::Show($error_msg,"Achtung!",0)
} else {
[System.Windows.Forms.MessageBox]::Show("Erfolgreich kopiert " + $FolderName,"",0)
}
}
问题是它复制了包含内容的文件夹,此外它还创建了一个新文件夹,其名称应为应有的名称,但没有内容。而且它甚至不复制文件夹中的所有内容?!