View previous topic :: View next topic |
Author |
Message |
argitoth
Joined: 24 Dec 2013 Posts: 2
|
Posted: Fri Jan 10, 2014 3:42 am Post subject: Find files without an extension |
|
|
I want to find files without an extension and then add an extention.
some_file1.wav
some_file2
some_file3.wav
some_file4.wav
becomes
some_file1.wav
some_file2.wav
some_file3.wav
some_file4.wav
What is the regex syntax? |
|
Back to top |
|
 |
admin Site Admin
Joined: 09 Mar 2007 Posts: 448 Location: Canada
|
Posted: Thu Jan 16, 2014 10:26 pm Post subject: |
|
|
First press the more button in the name filter panel. Another window comes up. add *.* in the name exclusion panel.
Make sure the pattern type in the panel at the top indicates 'unix wildcard' - this is the default pattern type for the name filter.
Press OK.
This will tell the name filter to omit any files with a '.' in the name.
Back on the main window, enter the following into the custom renaming creator (do not enter the single quotes).
Row: 1
Search: '(.*)'
Replace: '\1.wav'
This will tell the renamer to take all of the current name and add '.wav'.
Press Scan.
Hope that helps.
Peter. |
|
Back to top |
|
 |
|