我使用下面的 IronPython 脚本打开 Windows 资源管理器以定义在客户端 Spotfire 中完美运行的路径。
当我在 Spotfire Webplayer中运行相同的脚本时,Windows 资源管理器不会打开。
没有显示错误消息,但我在底部工具栏中看到以下信息:Javascript:void(0);
# This script executes an external program.
#Script Parameters
program = 'explorer.exe'
url = 'file://U:/Data/Downloads/'
#A. We need the Process class to execute external programs
from System.Diagnostics import Process
#B. Create new process instance
p = Process()
#B.1 Configure your process
p.StartInfo.UseShellExecute = False
p.StartInfo.RedirectStandardOutput = True
p.StartInfo.FileName = program
p.StartInfo.Arguments = url
#C. Start the process and wait
p.Start()
p.WaitForExit()
如何更新我的脚本以使其也可以在 Spotfire Webplayer 中运行。