Hi Team
I have several folders with p.12 keys
there are 2 keys in the folder
I need to know the expiration date of all keys in all folders
How can i do this?
Hi Team
I have several folders with p.12 keys
there are 2 keys in the folder
I need to know the expiration date of all keys in all folders
How can i do this?
@Aibek_Abubakirov How are you going to find the Expiration Date manually?
Use assign activity and create a array of string variable = Directory.GetFiles(“Folder Path”) Example like this [ Directory.GetFiles(“C:\Users\gulshiya\Desktop\sampleTest”)]
Then use For each activity and inside the body keep message box or writeline .
Thats it you will get the file name as well as path
If you dont want that path mean just split it
cool,
Regards,
Gulshiyaa
@supermanPunch @Srini84
Can be found through web services
@Aibek_Abubakirov
Is the expiry date inside the file or in the file name?
Can you please send the full name of the file along with extension
The expiration date can be found through the web service or by the date the file was created
File .p12
I need to find out the names of all files and start working with them one by one
Fine
Did we try with GET FILEINFO activity
https://docs.uipath.com/studiox/docs/get-file-info-x
That is first get all the file paths from all sub folders and then pass that array variable to for each activity
Inside that loop we can use Get FileInfo activity and from that we can know the creation date we want
Cheers @Aibek_Abubakirov
Follow the below steps:
Let me know if this is helpful for you.