Windows 10
A Microsoft operating system that runs on personal computers and tablets.
11,702 questions
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
I have over 600 files that i need to sort, all of them have "thumb" in name it looks like this "123example_thumb", so is there a way of choosing/removing files that have "thumb" in them?
What specifically do you want to do with these files? Delete them? Move them somewhere else?
With a large number of files, it might be easier with Powershell.
cd c:\Your\Data\Folder
Get-ChildItem *thumb* | Sort-Object -Property Name
Get-ChildItem *thumb* | Sort-Object -Property Name -Descending
Get-ChildItem *thumb* | Sort-Object -Property LastWriteTime
Get-ChildItem *thumb* | Remove-Item -whatif