If Renamed column
-
- Sr. Member
- Posts: 294
- Joined: Wed Sep 15, 2010 1:38 pm
If Renamed column
I propose that the "If Renamed" column should be "<no change>" or something like this, if it is identical to the original file name. So we can avoid having to constantly look at what has changed. Maybe an option or a button could be to enable/disable this.
Re: If Renamed column
The change script can be extended to include the rename column in the checks made and mark the column as skip
-
- Sr. Member
- Posts: 294
- Joined: Wed Sep 15, 2010 1:38 pm
Re: If Renamed column
With
if (tg_getField('filename')=tg_getField('rename')) then
tg_setresult('Same')
else
tg_setresult('New');
I got "New", I don't know why, as I see the "File" and "If Renamed" fields are the same.
What is wrong?
Otherwise Skip is true.
if (tg_getField('filename')=tg_getField('rename')) then
tg_setresult('Same')
else
tg_setresult('New');
I got "New", I don't know why, as I see the "File" and "If Renamed" fields are the same.
What is wrong?
Otherwise Skip is true.
-
- Sr. Member
- Posts: 294
- Joined: Wed Sep 15, 2010 1:38 pm
Re: If Renamed column
if (tg_getField('filename')=tg_getField('path')+tg_getField('rename')) then
tg_setresult('Same')
else
tg_setresult('New');
works well.
tg_setresult('Same')
else
tg_setresult('New');
works well.