在装有 Windows 8 的计算机上,如何在驱动器或网络位置内找到具有特定扩展名的所有文件?
例如,如何找到硬盘上的所有 *.docx 文件?
答案1
您可以使用此 Powershell 命令:
Get-ChildItem -Path c:\ *.docx -Recurse
在装有 Windows 8 的计算机上,如何在驱动器或网络位置内找到具有特定扩展名的所有文件?
例如,如何找到硬盘上的所有 *.docx 文件?
您可以使用此 Powershell 命令:
Get-ChildItem -Path c:\ *.docx -Recurse