Renaming with Metadata

You can use metadata (information about a file) to build up the new names of files by using various metadata insertion codes in the new name field.

In this example the original names of the MP3 files gave no information as to their content (01.mp3, 02.mp3, etc). Luckily, MP3 files usually contain metadata describing the music. Not only are we are using this metadata to rename the files, but we're using it to organize the music into folders.

Click the drop-down button to the left of the New name field to display a list of all the metadata fields that Opus supports.

These are the same fields as you can add to the file display as columns. When you pick a column from this menu (or one of the special, rename-only, options that appear at the bottom of the menu), the appropriate code is automatically inserted into the new name field at the current cursor position.

In the above example, we are using four music-related fields:

  • {mp3artist} to retrieve the name of the artist (Nick Cave and the Bad Seeds).

  • {mp3album} for the album name (Abattoir Blues - an excellent album I should add).

  • {mp3track} for the track number on the album.

  • {mp3title} for the actual name of the song.

The back-slashes that we've inserted between these fields has the effect of moving the file into sub-folders (relative to the current folder) as well as renaming it. The sub-folders will be created automatically if they don't already exist.

The Keywords for Columns page contains a full list of the keywords that can be used by the Rename function.

Additional codes for rename

As well as the full list of columns, the following codes can be used in the New name field:

  • [#]: Mark the position where the automatically incrementing number is inserted in the filename (when the Numbering action is turned on).

  • {parent}: The name of the parent folder of the file being renamed. The Rename files in selected sub-folders option affects the name that {parent} returns - if the rename operation recurses into a sub-folder, {parent} would return the name of that sub-folder for files within it.

  • {parent2}: Second-level parent folder (i.e. the parent of the parent)

  • {parent3}: Third-level parent folder, and so on.

  • {parentbase} (Base folder): This code is similar to {parent} except it returns the name of the base folder rather than that of the file's parent - that is, the folder that the rename operation started in. This is most useful with a recursive rename, where the name returned by {parent} would change for files inside sub-folders.

  • {parentbase2}: Base folder's parent, and so on.

  • {date} or {time}: The current date or time in the local time zone.

  • {dateu} or {timeu}: The current date or time in UTC.

  • {= ... =}: Inserts the value of an evaluator expression.

The {parent} and {parentbase} codes can also strip the file extension from the parent name, which is usual if the parent folder is an archive file. To do this, add |noext to the code (e.g. {parentbase|noext}).

If you want to use rename to move files into new folders, adding $.\ at the start of the new name lets each file be moved relative to the base folder rather than its parent.

The original filename can be retrieved without the file extension using {name|noext}.

Sometimes metadata may contain characters that aren't valid in filenames. For example, the {time} field normally formats the time using colons (HH:MM:SS), and colons are not legal filename characters. By default illegal characters will be converted to the closest legal alternative (so for example, a colon will be converted to a semi-colon). However you may wish to control this process yourself:

Date and time fields

Date and time fields let you configure the date format, the time format, or both. For example,

  • {datetaken|D#yyyy-MM-dd}: Inserts the date only in yyyy-MM-dd format (e.g. 2008-09-22)

  • {modified|T#HH-mm-ss}: Inserts the modified time in HH-mm-ss format (e.g. 13:10:55)

  • {datetaken|D#yyyyMMddT#HHmmss}: Inserts both the date and time as yyyyMMddHHmmss (e.g. 20051130154410).

As you can see in the examples, D# is used to mark the date format, and T# is used to mark the time format. See the Codes for date and time page for information on date and time formats.

Numeric fields

Numeric fields let you control zero-padding. For example,

  • {size|#8}: Zero-pads the size in bytes to eight places (e.g. 00045412)

  • {mp3track|#2}: Zero-pads the track number to two places (e.g. 08)

Including literal metadata codes

If for some reason you want to include a metadata code in the new filename literally (e.g. you really want to call a file Blah{size}) you can escape the leading { with another { character. E.g. *{{size} as a new name would add the literal string {size} to the name of every file.

最后更新于