files with a lenght of 7 positions

Advanced Renamer forum
#1 : 10/01-15 22:40
Koos
Koos
Posts: 1
Is it possible to find with this program alle files with a lenght of 7 positions im a specified directory
p.e. 1234567.jpg


10/01-15 22:40
#2 : 12/01-15 08:19
Stefan
Stefan
Posts: 274
Reply to #1:
 
For what do you need this find result?




If not for actual renaming tasks, better use a shell script to find that files, like e.g. PowerShell:

PS X:\my folder> > Get-ChildItem | Where{ ($_.BaseName).length -eq 7 }




It all depends about what you want to accomplish.
  


12/01-15 08:19