Skip to main content
Solved

Add creation date of file A as data in a new column of file B

  • April 10, 2025
  • 2 replies
  • 54 views

valiiien
Participant
Forum|alt.badge.img+1

I have a file A from which I am reading the creation date through a “Directory and File Pathnames Reader”.

Now I want to add the date as data in a column of file B.

It should look like this:

ID path_created_date
1 2025-04-04
2 2025-04-04

 

I tried using AttributeManager, but what I get is this:

ID path_created_date
<missing> 2025-04-04
1 <missing>
2 <missing>

 

I am very thankful for any other ideas or solutions.

Best answer by ebygomm

You can merge the date onto the features from column B using a constant in a featuremerger

The date from your FileA goes into the supplier, the data from Fileb goes into the requestor

This post is closed to further activity.
It may be an old question, an answered question, an implemented idea, or a notification-only post.
Please check post dates before relying on any information in a question or answer.
For follow-up or related questions, please post a new question or idea.
If there is a genuine update to be made, please contact us and request that the post is reopened.

2 replies

ebygomm
Influencer
Forum|alt.badge.img+45
  • Influencer
  • Best Answer
  • April 10, 2025

You can merge the date onto the features from column B using a constant in a featuremerger

The date from your FileA goes into the supplier, the data from Fileb goes into the requestor


valiiien
Participant
Forum|alt.badge.img+1
  • Author
  • Participant
  • April 17, 2025

Thank you very much! I could implement is in my script and it worked perfectly fine :)