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
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
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!
If it works for you please mark it as solution