Rename Us Users' Guide vlsoftware.net

Expression Examples

Contents Index Previous Next

1. File number in the project file list:

<FILENO>

2. Last modified date and time of the file:

file_last_modified( <FILE_PATH> )

3. Last modified date (without time) of the file:

format_date_time( file_last_modified(<FILE_PATH>), 'DD.MM.YYYY' )

4. File creation year:

format_date_time( file_created( <FILE_PATH> ), 'YYYY' )

5. Capitalize the first letter of every word in the file name:

capitalize(<CURRENT_NAME>)

6. Replace underscores with spaces in the file name:

string_replace(<CURRENT_NAME>, '_', ' ')

7. Replace slashes with underscores in the Title MP3 tag of the MP3 file:

string_replace(<MP3TAG_TITLE>, '/', '_')