activities
latest
false
- 概述
- 加密
- 数据库
- Java
- Python
- 网页 API
重要 :
请注意此内容已使用机器翻译进行了部分本地化。
新发布内容的本地化可能需要 1-2 周的时间才能完成。
开发者活动
上次更新日期 2024年12月11日
运行 Python 脚本
UiPath.Python.Activities.RunScript
使您能够执行 Python 代码。您可以直接在活动中输入代码或为其提供文件路径。
只能在“Python 作用域”活动中使用。
出于软件限制,默认情况下,此活动使用 Python 活动包的安装位置作为脚本的运行目录。
为了能够在脚本中使用相对路径,您可以将以下代码添加到加载的脚本中:
import sys
import os
sys.path.append(os.path.dirname(os.path.realpath(<em>file</em>)))
import <your module here>
import sys
import os
sys.path.append(os.path.dirname(os.path.realpath(<em>file</em>)))
import <your module here>