|
In you want to switch to script please click "Script":

To add elements of renaming use the following buttons:

Add an attribute:
 |
|
- Path |
- File name and extension |
- Folder |
| - Name |
| - Extension |
| - Date of change |
| - Date of creation |
| - Mp3 file tag (singer, name of song, album, year, track, comments, music style) |
| - Image attributes (date of creation, date of digitization, description, camera manufacturer, model, orientation, X-resolution, Y-resolution, program, exposure time, width, length) |
Functions:
 |
|
- "lowercase" Convert all the letters in the name to lowercase |
- "UPPERCASE" convert all the letters in the name to uppercase |
- "Capitalize" Convert the first letter to uppercase and the rest to lowercase |
| - Replace |
| - Insert |
| - Delete |
Special:
 |
|
| - Òåxt |
| - Ñounter |
View - prewiew of the scheme. Press this button to see the result of the current scheme. If there appears nothing the scheme has some errors and doesn't work.
Script rules
Construction:
begin
RenameFile();
end.
is the same in all schemes. The body of the scheme is in the brackets.
Functions, attributes and text are connected by symbol "+" (example: UPPERCASE(File.FileName)+'text'+FileExtension).
Attributes
ordinary - start with File. (example: File.Name, File.Folder)
MP3 - start with File.MP3. (example: File.MP3.Artist, File.MP3.Album)
images - start with File.EXIF. (example: File.EXIF.DataTime, File.EXIF.XResolution )
Functions
lowercase(attribute)
UPPERCASE
UPPERCASE(attribute)
Capitalize
Capitalize(attribute)
Replace
Replace(attribute,['what to replace'],'with what to replace', replace type)
replace type:
ReplaceAll - replace all
ReplaceFirst - replace the first entry
Insert
Insert(attribute,'what to insert', position)
position:
atBegin - in the beginning
atEnd - in the end
atPosition,number - from the numbered position
Delete
Delete(attribute, position,number of symbols)
position - from what position to delete (number)
number of symbols - the number of deleted symbols (number)
Special
Òåxt
Òext is typed in in inverted commas.
example: 'example of the text'
Ñounter
Counter(begin from number, digits, 'counter name')
|