PowerShell Scripting - Get-ChildItem

前端 未结 3 613
无人共我
无人共我 2020-12-21 02:25

I\'ve written a script that will be used for archiving log files from a server. I\'m in pretty good shape with everything but the recursiveness or not of Get-ChildItem...

3条回答
  •  死守一世寂寞
    2020-12-21 03:21

    I can't tell you the exact why of it (but I will keep looking), but the behavior is documented in the Get-Help for Get-ChildItem:

    -Include 
        Retrieves only the specified items. The value of this parameter qualifies the Path parameter. Enter a path elem
        ent or pattern, such as "*.txt". Wildcards are permitted.
    
        The Include parameter is effective only when the command includes the Recurse parameter or the path leads to th
        e contents of a directory, such as C:\Windows\*, where the wildcard character specifies the contents of the C:\
        Windows directory.
    

提交回复
热议问题