扫描出一个文件夹+子文件夹+在PowerShell中获取特定扩展名的文件

Scan out a folder + subfolder + get the files with a specific extension in PowerShell

我有一个名为 LOGFILES 的文件夹和一个名为 LOGFILES_OLD 的子文件夹。

但我们需要假设我不知道该文件夹的内容。

我试图在 PowerShell 中开发的是一种显示所有具有 .log 扩展名的文件列表的方法。

我在这里找到的东西没能得到它:

Get-Item C:\LOGFILES -Recurse | Where-Object {$_.Extension -eq ".log"} | Format-List

你为什么不使用:

Get-ChildItem "C:\LOGFILES"  -include *.log -Recurse