Xaml Creation Date

Hello,

I was wondering whether there was a way of finding out when a xaml file/workflow was created? Possible in the settings somewhere?

I can see when the file/flow was modified but not the creation date.

Cheers

@E.T.S

  • Navigate to the directory where your XAML file is located.
  • Right-click on the file and select “Properties”.
  • In the “Properties” window, go to the “Details” tab.
  • You should see the “Date created” field, which indicates when the file was originally created.

1 Like

Hey @E.T.S
In UiPath, the direct information about when a .xaml file or workflow was created isn’t available within the UiPath Studio interface or the project settings.
You can check the properties of the xaml file or if you would like to automate somehow it, you can use eg. powershell:
Get-ChildItem -Filter *.xaml | Select-Object Name, CreationTime

Hi @E.T.S

You can try the below way:

If you are trying to check it manually:
Right click on the particular xaml-> Click properties-> You can find Created and Modified date

Regards

Perfect thank you that works!

@E.T.S

If it works for you please mark it as solution