Page 1 of 1

How to add Custom Column to file name

PostPosted: Tue Nov 09, 2021 12:43 am
by fourboxes
I found a post here showing me how to display dimensions in the Custom Column using this:
Code: Select all
    <(#System.Image.HorizontalSize)> x <(#System.Image.VerticalSize)>

How do I add that info to each file name? I have 100 files labeled wp_001.jpg through wp100.jpg and I just want to append wp_001_[custom column].jpg

Thanks!

Re: How to add Custom Column to file name

PostPosted: Tue Nov 09, 2021 6:11 am
by Luuk
The easy way is using <_[(#Width) x (#Height)]> inside of the "Suffix" for Add(7).

Re: How to add Custom Column to file name

PostPosted: Tue Nov 09, 2021 6:46 pm
by fourboxes
Luuk wrote:The easy way is using <_[(#Width) x (#Height)]> inside of the "Suffix" for Add(7).


That worked great - thank you!