Contact Us

CATEGORIES

Whoops…Nothing found

Try other keywords in your search

Trigger Executables on the local machine

 0 Minutes

 0 Likes

 598 Views

 This describes the code you can add to an action to trigger a local executabble or a file

   --local comm = ('C:\\test.csv') just another excample
local comm = ('C:\\python27\\python.exe "C:\\temp\\my_script.py"'
os.execute(comm)

Please adjust your paths accordingly.
In order4 to trigger a python script youll need the full path to python.exe together with the full path to the script and then use os.execute. Please note the usage of single and double quotes.


Was this article helpful?