0

我需要制作带有子文件夹的文件夹的副本,但是除了包含文件夹“Project”的数据之外,没有任何文件。

所以我需要做新的文件夹树,但它应该只包含名为“Project”的子文件夹中存在的文件。

好的,我的解决方案:

$folder = dir D:\ -r
$folder

foreach ($f in $folder)
{
    switch ($f.name)
    {
    "project"
    {
        Copy-Item -i *.* $f.FullName D:\test2
    }

    default
    {
    Copy-Item  -exclude *.* $f.FullName D:\test2
    }

    }
}
4

4 回答 4

4

用于xcopy /t仅复制文件夹结构,然后Project单独复制文件夹。像这样的东西:

'test2\' | Out-File D:\exclude -Encoding ASCII
xcopy /t /exclude:d:\exclude D:\ D:\test2
gci -r -filter Project | ?{$_.PSIsContainer} | %{ copy -r $_.FullName d:\test2}
ri d:\exclude
于 2012-06-14T05:31:41.850 回答
0

用于Get-ChildItem递归文件夹并使用New-Item. 在递归中,您可以轻松检查“项目”。

于 2012-06-14T05:07:13.620 回答
0

另一种解决方案:

$source = "c:\dev"
$destination = "c:\temp\copydev"

Get-ChildItem -Path $source -Recurse -Force |
    Where-Object { $_.psIsContainer } |
    ForEach-Object { $_.FullName -replace [regex]::Escape($source), $destination } |
    ForEach-Object { $null = New-Item -ItemType Container -Path $_ -Force }

Get-ChildItem -Path $source -Recurse -Force |
    Where-Object { -not $_.psIsContainer -and (Split-Path $_.PSParentPath -Leaf) -eq "Project"} |
    Copy-Item -Force -Destination { $_.FullName -replace [regex]::Escape($source), $destination }
于 2012-06-14T06:50:59.930 回答
0

首先,创建目录结构:

xcopy D:\source D:\destination /t /e

现在,遍历源目录,复制项目目录中的每个文件:

Get-ChildItem D:\Source * -Recurse |
    # filter out directories
    Where-Object { -not $_.PsIsContainer } |

    # grab files that are in Project directories
    Where-Object { (Split-Path -Leaf (Split-Path -Parent $_.FullName)) -eq 'Project' } | 

    # copy the files from source to destination
    Copy-Item -Destination ($_.FullName.Replace('D:\source', 'D:\destination'))
于 2012-06-15T13:59:01.050 回答