
Announcements
So I've written a python script which shows the last modified date of a file.
I need to compare the date with current day date and if it's equal then perform some action.
Note: I'm working on Power Automate Desktop version
I tried running powershell command by doing
python_path = *python path in C disk*
script_path = *path of the script on the system*
then ran this via powershell script as
%python_path% %script_path%
this only shows me 1/1/1970 12:00:00:00 AM for some reason which I don't understand, running script on windows terminal shows correct output
I tried converting my python3 code to python2 and copy pasted it in the python script runner and the output is blank.