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 nameThe resulting string consists of a date and time formatted using control panel regional settings.adding date and time to the file nameexpression: File.Name + " " + DateTimeToStr(File.Created)adding only date part of the timestampexpression: File.Name + " " + DateToStr(File.Created)adding only time part of the timestampexpression: File.Name + " " + TimeToStr(File.Created)Where " " is just separating space enclosed in double straight quotes.
2. Adding file size to the file nameexpression: File.Name + " size is " + IntToStr(File.Size) + " bytes"expression: File.Name + " size is " + IntToStr(Int((File.Size)/1024)) + " Kb"
3. File name case convertionTurn 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)
4. Adding PictureTaken date-time to the file (picture) nameexpression: File.Name + " " + FormatDateTime("DD-MM-YYYY",File.EXIF.PictureTaken)see detailed FormatDateTime specification More information coming soon
Other features of AttributeMagic Pro
Change file-folder date-time; | |||
|
|
| feedback | site map | © Elwinsoft, 1999-2008 |