如何在Windows中使用命令提示符查找系统中存在的所有word文件?
我尝试使用
dir \b\s\o list.docx
,但没有成功。任何人都可以回答这个问题,并介绍学习各种操作系统(如 windows/linux/macos)的操作系统命令的资源。
Get-ChildItem -Path "C:\YourDirectory" -Recurse | Where-Object { $_.Name -match "your-regex-pattern" }
搜索所有 docx 文件:
Get-ChildItem -Path "C:\YourDirectory" -Recurse | Where-Object { $_.Name -match "*.docx" }