我有一个文件夹来源。它有以下文件:
image_00000.jpg
...
...
image_08000.jpg
最后附加否定的子文件夹:
我的目标是复制特定文件,除了 image_00000.jpg到image_00250.jpg 之外的所有内容。此外,我还需要复制一些在末尾附加否定的子文件夹。
我写了以下脚本:
cls
$source = "All_flowers_images_negatives"
$destination = "Passion_Flower_Negative_Images_temp"
<#
foreach ($i in Get-ChildItem -Path $source -Recurse)
{
if ($i.Name -match "image_(?!(000\d\d|001\d\d|002[0-4]\d|0025[0-1]))\d{5}\.jpg")
{
Copy-Item -Path $i.FullName -Destination $i.FullName.Replace($source,$destination).Trim($i.Name)
}
}
#>
foreach ($i in Get-ChildItem -Path $source -Recurse)
{
if ($i.Name -match "Negatives$")
{
Copy-Item -Path $i.FullName -Destination $i.FullName.Replace($source,$destination).Trim($i.Name)
}
}
选择性文件复制工作(这就是为什么我已经注释掉了)但第二个命令只复制文件夹结构而不复制这些子文件夹中的任何文件。我应该做些什么改变?
EDIT1 :代码已经过编辑,问题仍然存在
EDIT2:它与copy-item -recurse
一起使用,我的目标已经实现,但我仍然在实现,
Copy-Item : The given path's format is not supported.
At F:\_102flowers-500X500\copy_positives_Passion_Flower.ps1:18 char:18
+ Copy-Item <<<< -Recurse -Path $i.FullName -Destination $i.FullName.Replace($source,$destination).Trim($i.Name)
+ CategoryInfo : NotSpecified: (:) [Copy-Item], NotSupportedException
+ FullyQualifiedErrorId : System.NotSupportedException,Microsoft.PowerShell.Commands.CopyItemCommand
为什么?
答案 0 :(得分:0)
最后我明白了。由于我完全不熟悉Powershell,我根本无法编写任何正确的代码。我在Copy-Item中仔细研究了一些细节,发现由于我使用相同的命令来复制文件,但是对于子文件夹,它需要稍作改动。
这是正确的解决方案:
cls
$source = "All_flowers_images_negatives"
$destination = "Passion_Flower_Negative_Images_temp"
<#
foreach ($i in Get-ChildItem -Path $source -Recurse)
{
if ($i.Name -match "image_(?!(000\d\d|001\d\d|002[0-4]\d|0025[0-1]))\d{5}\.jpg")
{
Copy-Item -Path $i.FullName -Destination $i.FullName.Replace($source,$destination).Trim($i.Name)
}
}
#>
foreach ($i in Get-ChildItem -Path $source -Recurse)
{
if ($i.Name -match "Negatives$")
{
Copy-Item -Recurse -Path $i.FullName -Destination $i.FullName.Replace($source,$destination)
}
}
问题是,需要Trim($i.Name)
来修剪文件夹完整路径中的文件名称 - 有意义但是在复制子目录的情况下,写作,
$i.FullName.Replace($source,$destination)
是否需要替换路径并且不需要修剪,因为没有涉及文件