25

我正在使用 Powershell v 2.0。并将文件和目录从一个位置复制到另一个位置。我正在使用 string[] 过滤掉文件类型,并且还需要过滤掉一个目录以免被复制。文件被正确过滤掉,但是,我试图过滤的目录obj一直被复制。

$exclude = @('*.cs', '*.csproj', '*.pdb', 'obj')
    $items = Get-ChildItem $parentPath -Recurse -Exclude $exclude
    foreach($item in $items)
    {
        $target = Join-Path $destinationPath $item.FullName.Substring($parentPath.length)
        if( -not( $item.PSIsContainer -and (Test-Path($target))))
        {
            Copy-Item -Path $item.FullName -Destination $target
        }
    }

我尝试了各种方法来过滤它,\obj 或者 似乎没有任何效果*obj*\obj\

感谢您的任何帮助。

4

3 回答 3

57

-Exclude参数很烂。我建议您过滤不想使用的目录Where-Object (?{})。例如:

$exclude = @('*.cs', '*.csproj', '*.pdb')
$items = Get-ChildItem $parentPath -Recurse -Exclude $exclude | ?{ $_.fullname -notmatch "\\obj\\?" }

PS:警告词 - 甚至不要考虑-ExcludeCopy-Item其自身上使用。

于 2013-11-07T17:53:58.547 回答
7

我用它来列出根目录下的文件,但不包括目录

$files = gci 'C:\' -Recurse  | Where-Object{!($_.PSIsContainer)}
于 2014-09-05T14:02:09.223 回答
4
Get-ChildItem -Path $SourcePath -File -Recurse | 
Where-Object { !($_.FullName).StartsWith($DestinationPath) } 
于 2014-12-13T17:18:29.707 回答