8 lines
325 B
Python
8 lines
325 B
Python
from org.csstudio.opibuilder.scriptUtil import PVUtil
|
|
#Basic Setup
|
|
|
|
filename3 = "/home/pricardofc/CSS-Workspaces/sys-mng-opi"+display.getWidget("filePathWrite").getPropertyValue("text")
|
|
myfile = open(filename3, 'w')
|
|
myfile.write(str(PVUtil.getString(display.getWidget("writeLabel").getPropertyValue("text"))))
|
|
myfile.close()
|