|
Curtis Walter |
When I add new items to my inventory program it creates and resizes my product images to 6 different dimensions with 22 characters in the created images filenames for use in the POS software. When the item sells it leaves the old created files scattered in multiple directories.
if I could search for >22 character filenames ending in .jpg I could remove thousands of useless files from my system.
Activity Newest / Oldest
Team UltraSearch
Status changed to: Released
Team UltraSearch
This is possible by using wildcards:
? :matches exactly one letter.
* :matches 0 - n letters.
To find all jpg files > 22 characters you could use the following search term: (22 times questionmark for each character and a * to find files with more than 22 characters)
????????????????????????*.jpg