Hi All,
Could anyone help me with some guidance for extracting an excel file’s Author last saved by name and date info.
Hi All,
Could anyone help me with some guidance for extracting an excel file’s Author last saved by name and date info.
Hi
You can use this activity to get the file info like
Input: Size (in bytes), Name (file name including extension), Full Name (includes full path) , Folder (full path to the folder containing the file), Last modified date , Last accessed date , Created date (dates including time), IsReadOnly (TRUE or FALSE), Size in KB .
https://docs.uipath.com/activities/other/latest/workflow/get-file-info-x
To get the name
str_name = System.IO.File.GetAccessControl(path).GetOwner(GetType(System.Security.Principal.NTAccount)).Value
Cheers @Monisha_P
Thanks for your guidance, but while using file info activity , I’ve tried extracting the values , but its giving me the modified date and lastwritetime as file downloaded to my local folder which is today’s date “20/09/2023”
Exactly I want the last saved by date which is “31/8/2023 4:09 PM”
Hello @Monisha_P
Thanks & Cheers!!!
Thanks for the suggestion , anyway got the solution using vba code.
And what was that solution? Mind sharing it here?