Rename files and folders with AttributeMagic Pro

AttributeMagic > AttributeMagic Pro > rename files-folders

AttributeMagic Pro offers flexible way to batch rename a selected group of files and folders. With mechanism of custom expressions you can construct various renamig schemes.

1. Adding the file/folder date to the file name

The resulting string consists of a date and time formatted using control panel regional settings.

adding date and time to the file name

expression: File.Name + " " + DateTimeToStr(File.Created)

adding only date part of the timestamp

expression: File.Name + " " + DateToStr(File.Created)

adding only time part of the timestamp

expression: File.Name + " " + TimeToStr(File.Created)
Where " " is just separating space enclosed in double straight quotes.

2. Adding file size to the file name

expression: File.Name + " size is " + IntToStr(File.Size) + " bytes"
expression: File.Name + " size is " + IntToStr(Int((File.Size)/1024)) + " Kb"

3. File name case convertion

Turn file name to upper case. Expression: Uppercase(File.Name)
Turn file name to lower case. Expression: Lowercase(File.Name)
Turn first character of the file name to upper case and remaining characters to lower case.
Expression: Namecase(File.Name)

Advanced date-time formatting

Also you can use FormatDateTime function to convert date-time stamp to string and paste it in the file name: File.Name + " " + FormatDateTime("DD-MM-YYYY",File.Created)
Where " " is just separating space in double straight quotes.

4. Adding PictureTaken date-time to the file (picture) name

expression: File.Name + " " + FormatDateTime("DD-MM-YYYY",File.EXIF.PictureTaken)
see detailed FormatDateTime specification

More information coming soon


Download AttributeMagic Pro v.2.3 beta4 FREE TRIAL
EXE  Compressed (zipped) Setup file (1.76 Mb)
ZIP  Setup file (1.77 Mb)

Other features of AttributeMagic Pro

Change file-folder date-time;
Annotate digital photos/images;
Print, export, save folder contents;


feedback site map © Elwinsoft, 1999-2008