79291477

Date: 2024-12-18 14:46:11
Score: 0.5
Natty:
Report link
Get-ChildItem -Path "C:\YourDirectory" -Recurse | Where-Object { $_.Name -match "your-regex-pattern" }

to search all docx files:

Get-ChildItem -Path "C:\YourDirectory" -Recurse | Where-Object { $_.Name -match "*.docx" }
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Ali BOUHLEL