PowerShell Include Filter 區別

Include 要搭配 Recurse 使用

get-childitem $Path -Include *.txt
# return nothing

get-childitem $Path -Include *.txt -Recurse
# 有傳回值,但是傳回了整個路徑下遞迴的的檔案,如果只要傳回自己本身的子項目可用下列

get-childitem $Path -Filter *.txt
# 下列也可以
get-childitem $Path/* -Filter *.txt

發佈留言